-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 KB
/
package.json
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
{
"name": "core-curation",
"displayName": "Core Curation",
"description": "Required for curating in Flashpoint Core",
"version": "0.0.1",
"main": "./dist/extension.js",
"contributes": {
"contextButtons": [
{
"context": "curation",
"runWithNoCuration": true,
"name": "Clear WinINet Cache",
"command": "core-curation.clear-wininet-cache"
},
{
"context": "curation",
"name": "Migrate to FP Navigator",
"command": "core-curation.fix-requirements"
},
{
"context": "curation",
"name": "Load Data Pack Into Curation",
"command": "core-curation.load-data-pack"
},
{
"context": "curation",
"runWithNoCuration": true,
"name": "Migrate Data Packs",
"command": "core-curation.migrate-data-packs"
}
]
},
"scripts": {
"build": "gulp build --color",
"watch": "gulp watch --color",
"package": "gulp package --color",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"esbuild": "0.20.2",
"eslint": "^8.14.0",
"gulp": "^4.0.2",
"gulp-zip": "^5.0.2",
"merge-stream": "^2.0.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.4"
}
}