-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vscode-starter",
"version": "1.0.0",
"description": "",
"main": "dist/node/extension.js",
"engines": {
"vscode": "^1.74.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "packages/vscode-scripts/bin/vscode-scripts.js build",
"start": "packages/vscode-scripts/bin/vscode-scripts.js start",
"open": "code --extensionDevelopmentPath=${PWD}",
"package": "npm run build && packages/vscode-scripts/bin/vscode-scripts.js package",
"publish": "vsce publish --no-dependencies",
"publish-scripts": "cd packages/vscode-scripts && npm run bump-patch && npm publish",
"code-server-up": "packages/vscode-scripts/bin/vscode-scripts.js code-server-up",
"code-server-down": "packages/vscode-scripts/bin/vscode-scripts.js code-server-down",
"e2e": "npm run package && npm run code-server-up && cypress open --config-file cypress/cypress.config.ts"
},
"publisher": "vscode-starter",
"icon": "public/ping-logo.png",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.4.5",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/vscode": "^1.74.0",
"cypress": "^12.17.4",
"cypress-iframe": "^1.0.1",
"typescript": "^5.1.6",
"vsce": "^2.15.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^4.2.0",
"zustand": "^4.4.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "container",
"title": "Extension Starter",
"icon": "public/bell.svg"
}
]
},
"views": {
"container": [
{
"id": "box",
"name": "box",
"type": "webview",
"initialSize": 4
},
{
"id": "box2",
"name": "box2",
"type": "webview",
"initialSize": 4
}
]
},
"commands": [
{
"command": "vscode_starter.addTodo",
"title": "Add Todo"
}
],
"configuration": {
"type": "object",
"title": "vscode_starter",
"properties": {}
},
"keybindings": []
}
}