-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@lvce-editor/ripgrep",
"version": "0.0.0-dev",
"description": "A module for using ripgrep in a Node project",
"main": "src/index.js",
"typings": "src/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/lvce-editor/ripgrep"
},
"scripts": {
"build": "node scripts/build.js",
"format": "prettier --write .",
"postinstall": "node ./src/postinstall.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"keywords": [
"lvce-editor",
"ripgrep"
],
"author": "Lvce Editor",
"license": "MIT",
"dependencies": {
"@lvce-editor/verror": "^1.7.0",
"execa": "^9.6.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.3.4",
"path-exists": "^5.0.0",
"tempy": "^3.2.0",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@lvce-editor/eslint-config": "^7.7.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"eslint": "^9.39.4",
"jest": "^30.3.0",
"nock": "^14.0.11",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=22"
}
}