-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 830 Bytes
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
{
"name": "vscode-test-sample",
"displayName": "vscode-test-sample",
"description": "",
"version": "0.0.1",
"type": "module",
"engines": {
"vscode": "^1.110.0"
},
"categories": [
"Other"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "22.x",
"@types/vscode": "^1.110.0",
"glob": "^12.0.0",
"mocha": "^10.0.0",
"typescript": "^5.4.5"
},
"dependencies": {},
"overrides": {
"serialize-javascript": "^7.0.5"
}
}