-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "scriptbowl",
"version": "0.3.3",
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"main": "bld/library/index.js",
"types": "bld/library/index.d.ts",
"scripts": {
"serve": "node ./bld/server/main.js",
"dev-test": "node ./bld/test/index.js",
"build": "rimraf ./bld && tsc --build",
"lint": "eslint .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint",
"prerelease": "npm version prerelease --preid=beta",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@forker/fc2": "2.2.5-types.3",
"@types/node": "^16.10.3",
"@types/node-fetch": "^2.5.12",
"aliyun-sdk": "^1.12.3",
"eventemitter3": "^4.0.7",
"https-proxy-agent": "^5.0.0",
"jszip": "^3.7.1",
"nanoid": "^3.1.29",
"node-fetch": "^2.6.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@mufan/code": "^0.2.10",
"@mufan/eslint-plugin": "^0.1.48",
"eslint": "^8.5.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
}
}