-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "sample-react.input.sample",
"displayName": "react-input-sample",
"description": "sample to test input on react",
"version": "0.0.1",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.showView"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.showView",
"title": "Show View",
"category": "Input Sample"
}
]
},
"scripts": {
"build": "webpack --mode production --config ./webpack.config.js",
"watch": "webpack --mode development --watch --config ./webpack.config.js"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"merge-options": "^3.0.4",
"typescript": "^4.3.2",
"vscode": "^1.1.37",
"@types/vscode": "^1.56.0",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"babel-loader": "^8.2.2",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"ts-loader": "^9.2.3"
}
}