-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.42 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.42 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
{
"name": "panda-manager",
"version": "0.3.0",
"description": "panda-manager is a manga/doujinshi manager with tag at windows platform",
"main": "main/index.js",
"author": "xiaoboost",
"license": "MIT",
"scripts": {
"clear": "rimraf ./dist/generated",
"dev": "chcp 65001 && electron --debug=5858 ./dist/generated",
"test": "pnpm run -r test --parallel --filter .",
"lint": "pnpm run -r lint --parallel --filter .",
"lint:fix": "pnpm run -r lint:fix --parallel --filter .",
"watch": "builder watch --outDir=dist/generated --mode=development",
"build": "builder build --outDir=dist/generated --mode=production",
"build:analyze": "pnpm run build -- --bundleAnalyze",
"build:builder": "pnpm run build --filter @panda/builder...",
"format": "prettier --write ./packages/**/*.{ts,tsx,json,js,jsx}",
"package": "builder package --input=dist/generated --output=dist/package",
"generate": "pnpm run build:builder && pnpm run build && pnpm run package"
},
"repository": {
"type": "git",
"url": "https://github.com/xiaoboost/panda-manager"
},
"devDependencies": {
"@panda/builder": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"electron": "17.1.2",
"eslint": "^8.12.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"prettier": "^2.6.1",
"typescript": "4.6.3"
}
}