-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "my-first-deeke-script-app",
"version": "1.0.0",
"description": "我的第一个DeekeScript应用",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"deekeScript-zip-build": "tsc && node script/deekeScriptZipBuild.js",
"start": "node script/index.js",
"dev": "tsc --watch",
"webpack-build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeekeScript/deekeScript.git"
},
"keywords": [
"DeekeScript应用"
],
"author": "jiangqiao",
"license": "ISC",
"bugs": {
"url": "https://github.com/DeekeScript/deekeScript/issues"
},
"homepage": "https://github.com/DeekeScript/deekeScript#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"file-loader": "^6.2.0",
"glob": "^11.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-obfuscator": "^3.5.1"
},
"dependencies": {
"adm-zip": "^0.5.16"
}
}