-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 892 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 892 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
{
"name": "sample-hello",
"displayName": "santhosh Kumar publish",
"description": "Hello World VS Code extension to test publishing",
"version": "1.5.0",
"publisher": "santhoshKumar-test-vscode",
"license": "MIT",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:sample-hello.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sample-hello.helloWorld",
"title": "Test Gowtham App: Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"typescript": "^5.0.0",
"vsce": "^2.15.0"
}
}