-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.96 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
{
"name": "vscode-extension-bootstrap",
"displayName": "vscode-extension-bootstrap",
"description": "vscode extension bootstrap",
"version": "0.0.1",
"private": true,
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"activationEvents": [
"onView:bootstrapSidebar"
],
"contributes": {
"commands": [
{
"command": "vscode-extension-bootstrap.helloWorld",
"title": "Hello World"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "bootstrapSidebar",
"title": "bootstrap",
"icon": "assets/sidebar.svg"
}
]
},
"views": {
"bootstrapSidebar": [
{
"id": "myCustomView",
"name": "我的自定义视图",
"icon": "assets/sidebar.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint . --ext ts,js --fix",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"openai": "^4.7.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/test-electron": "^2.3.4",
"copy-webpack-plugin": "^11.0.0",
"eslint": "8",
"glob": "^10.3.3",
"husky": "4",
"mocha": "10",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "5",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": "[email protected]:app-bootstrap/vscode-extension-bootstrap.git"
}