-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "develop-kit",
"displayName": "develop-kit",
"description": "develop-kit",
"version": "0.0.1",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "code-debugger.debugKit",
"title": "DebugKit"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"dev": "webpack-dev-server -c webpack.dev.js",
"build": "webpack -c webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/debugadapter": "^1.63.0",
"@vscode/debugprotocol": "^1.63.0",
"@vscode/test-electron": "^2.3.4",
"babel-loader": "^9.1.3",
"daisyui": "^3.9.4",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"html-webpack-plugin": "^5.5.3",
"mocha": "^10.2.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"autoprefixer": "^10.4.16",
"css-loader": "^6.8.1",
"postcss-loader": "^7.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.3"
}
}