-
Notifications
You must be signed in to change notification settings - Fork 512
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "mediago",
"version": "0.1.0",
"description": "mediago",
"author": "caorushizi",
"homepage": "https://downloader.caorushizi.cn/",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/dev.ts && pnpm --parallel -F \"./packages/*\" run dev",
"dev:web": "pnpm --parallel -F \"./packages/*\" run dev:web",
"build": "tsx scripts/build.ts",
"build:plugin": "pnpm -F plugin run build",
"build:main": "pnpm -F main run build",
"build:web": "pnpm -F renderer run build:web",
"build:backend": "pnpm -F backend run build",
"build:renderer": "pnpm -F renderer run build",
"build:mobile": "pnpm -F mobile run build",
"build:web-release": "tsx scripts/web.ts",
"rebuild:web": "pnpm -F backend rebuild",
"rebuild:electron": "pnpm -F main run rebuild",
"beta": "pnpm run build && pnpm -F mediago run pack",
"release": "pnpm run build && pnpm -F main run release",
"types": "pnpm -F main run types",
"types:renderer": "pnpm -F renderer run types",
"types:watch": "pnpm -F main run types:watch",
"prepare": "husky",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"spellcheck": "cspell \"packages/**/src/**/*.{ts,tsx}\"",
"lint-staged": "pnpm --recursive -F \"./packages/*\" run lint-staged"
},
"keywords": [],
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/core": "^19.3.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@commitlint/format": "^19.3.0",
"@eslint/js": "^8.57.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cspell": "^8.8.3",
"cz-git": "^1.9.2",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"tsx": "^4.11.0",
"typescript-eslint": "^7.10.0",
"zx": "^8.1.1"
},
"pnpm": {
"patchedDependencies": {
"@ghostery/[email protected]": "patches/@[email protected]"
}
}
}