-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.03 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
{
"name": "js-worker-hook",
"version": "0.1.0",
"description": "JS Worker Hook TypeScript Edition",
"author": "[email protected]",
"license": "UNLICENSED",
"main": "dist/hook.js",
"scripts": {
"build:dev": "NODE_ENV=development node ./script/build.js",
"build:pro": "NODE_ENV=production node ./script/build.js",
"pack:dev": "node ./script/pack.cmd.js ./dist/hook.js ./test/origin.js ./test/packed.js",
"pack:pro": "node ./script/pack.cmd.js ./dist/hook.min.js ./test/origin.js ./test/packed.min.js",
"test:dev": "npm run build:dev && npm run pack:dev",
"test:pro": "npm run build:pro && npm run pack:pro",
"format": "prettier src",
"lint": "eslint src --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"@edgeone/ef-types": "^1.0.4",
"esbuild": "^0.21.5",
"typescript": "^5.5.2"
}
}