-
Notifications
You must be signed in to change notification settings - Fork 386
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "test-extension",
"displayName": "test-extension",
"publisher": "ms-vscode",
"private": true,
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {},
"scripts": {
"clean": "rimraf lib",
"compile": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "eslint src",
"test": "node ../build/bin/symlink-tests.js && node lib/runTests.js",
"all": "npm run clean && npm run compile && npm run lint && npm run test",
"symlink:publish": "node ../build/bin/symlink-client-tests-publish.js",
"compile:publish": "tsc -b ./tsconfig.publish.json",
"test:publish": "node lib/runTests.js",
"all:publish": "git clean -xfd . && npm install && npm run symlink:publish && npm run compile:publish && npm run test:publish"
},
"dependencies": {
"minimatch": "^10.2.3",
"vscode-languageserver": "10.0.0-next.17",
"vscode-uri": "3.0.8"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@types/vscode": "1.106.0",
"@types/node": "20.17.9",
"@vscode/test-electron": "^2.4.1",
"find-process": "^1.4.7",
"glob": "^11.1.0",
"sinon": "^19.0.2",
"uuid": "^11.0.3"
},
"enabledApiProposals": []
}