-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.43 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": "sui-simulator-vscode",
"displayName": "sui-simulator",
"icon": "media/icon.png",
"publisher": "weminal-labs",
"description": "",
"version": "0.5.3",
"repository": "https://github.com/Weminal-labs/sui-simulator-vscode",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "sui-simulator-sidebar-view",
"title": "Sui Simulator",
"icon": "media/logo.svg"
}
]
},
"views": {
"sui-simulator-sidebar-view": [
{
"type": "webview",
"id": "sui-simulator-sidebar",
"name": "Sui Simulator",
"icon": "media/logo.svg",
"contextualTitle": "Sui Simulator"
}
]
},
"commands": [
{
"command": "sui-simulator-vscode.helloWorld",
"title": "Hello World"
},
{
"command": "sui-simulator-vscode.webView",
"category": "sui-simulator-vscode",
"title": "Webview"
},
{
"command": "sui-simulator-vscode.terminal",
"category": "sui-simulator-vscode",
"title": "Terminal"
}
]
},
"scripts": {
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"vscode:prepublish": "npm run compile",
"watch": "npm-run-all --parallel watch:*",
"watch:ext": "tsc -watch -p ./ --outDir out",
"watch:wv": "cd webview-ui && npm run watch",
"compile": "npm run clean && npm-run-all --parallel compile:*",
"compile:ext": "tsc -p ./ --outDir out",
"compile:wv": "cd webview-ui && npm run build",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"clean": "rimraf dist && cd webview-ui && npm run clean"
},
"devDependencies": {
"@estruyf/vscode": "^1.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}