forked from rome/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "rome-root",
"license": "MIT",
"version": "0.0.25",
"engines": {
"node": ">=12.0.0"
},
"//": "Look! No deps!",
"dependencies": {},
"///": "Only used for static type checking",
"devDependencies": {
"@types/node": "^13.13.5",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/vscode": "^1.45.0",
"typescript": "^3.8.3"
},
"romeLSPBin": "./scripts/vendor-rome",
"scripts": {
"dev-rome": "node ./scripts/dev-rome",
"test": "node ./scripts/dev-rome test",
"lint": "node ./scripts/dev-rome lint",
"fix": "node ./scripts/dev-rome --fix"
},
"rome": {
"root": true,
"bundler": {
"mode": "modern"
},
"lint": {
"ignore": [
"build",
"coverage",
"node_modules",
"core/static",
"resources",
"test-fixtures",
"vendor",
"type-libs",
"lib/modules.js",
"prelude.ts",
"website",
"@romejs-web",
"out",
"vscode/node_modules"
]
}
}
}