-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "autojs-dev",
"version": "0.8.0-beta.1",
"description": "Auto.js 开发工具,包含全局类型注释,可在VSCode等编辑器使用。",
"main": "./lib/index.js",
"license": "MIT",
"types": "./types/auto.d.ts",
"bin": {
"autojs": "./bin/autojs",
"autojs-new": "./bin/autojs-new",
"autojs-cap": "./bin/autojs-cap",
"autojs-create": "./bin/autojs-create",
"autojs-build": "./bin/autojs-build",
"autojs-img": "./bin/autojs-img"
},
"scripts": {
"test-types": "tsc test/test --skipLibCheck --lib ES2015 --target ES5 --removeComments",
"start": "node lib/index.js",
"build": "tsc"
},
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pboymt/autojs-dev.git"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@autojs/types-pro8": "^8.8.0",
"@autojs/types-pro9": "^9.0.0",
"adbkit": "^2.0.17",
"commander": "^9.1.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.72.0"
}
}