-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vs-code-aquarium",
"displayName": "vs-code-aquarium",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vs-code-aquarium.spawn-fish",
"onWebviewPanel:aquariumCoding"
],
"main": "./out/src/extension/extension.js",
"browser": "./dist/web/extension-web.js",
"contributes": {
"views": {
"explorer": [
{
"type": "webview",
"id": "aquariumView",
"name": "VS Code Aquarium"
}
]
},
"commands": {
"command": "vs-code-aquarium.spawn-fish",
"title": "Spawn Fish"
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile:panel": "webpack",
"compile:extension": "tsc -p ./tsconfig.extension.json",
"compile:test": "tsc -p ./tsconfig.test.json",
"compile:web": "webpack",
"compile": "npm run compile:panel && npm run compile:extension && npm run compile:test && npm run compile:web",
"watch": "tsc -watch -p ./tsconfig.extension.json",
"watch:web": "webpack --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts && prettier --check src",
"lint:fix": "eslint src --ext ts --fix && prettier --write src",
"test": "node ./out/test/runTest.js",
"test:coverage": "COVERAGE=1 node ./out/test/runTest.js",
"test:web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"test:gifs": "node ./out/test/gifs.js"
},
"devDependencies": {
"@rbarilani/remove-source-map-url-webpack-plugin": "^1.1.0",
"@types/vscode": "^1.76.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"path-browserify": "^1.0.1",
"typescript": "^4.9.5",
"ts-loader": "^9.3.0",
"@vscode/test-electron": "^2.2.3",
"webpack": "5.74.0",
"webpack-cli": "^4.10.0"
}
}