This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.96 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
{
"name": "qqnt-improved",
"private": true,
"version": "3.1.3",
"license": "LGPL-3.0-or-later",
"packageManager": "[email protected]",
"workspaces": ["src/electron", "src/typings", "src/builtins/*"],
"scripts": {
"dev": "TS_NODE_FILES=1 TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=development ts-node ./build.ts",
"build:win": "TS_NODE_FILES=1 TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=production ts-node ./build.ts && powershell -ExecutionPolicy Unrestricted -File ./scripts/pack.ps1",
"build:linux": "TS_NODE_FILES=1 TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=production ts-node ./build.ts && chmod +x ./scripts/pack.sh && ./scripts/pack.sh",
"install:win": "QQNTIM_INSTALLER_NO_KILL_QQ=1 cmd /c start \"\" /wait cmd /c dist\\\\install.cmd",
"install:linux": "chmod +x ./dist/install.sh && QQNTIM_INSTALLER_NO_KILL_QQ=1 ./dist/install.sh",
"start:win": "powershell -ExecutionPolicy Unrestricted -File ./scripts/start.ps1",
"start:linux": "chmod +x ./scripts/start.sh && ./scripts/start.sh",
"lint": "tsc && rome check .",
"lint:apply": "rome check . --apply",
"lint:apply-unsafe": "rome check . --apply-unsafe",
"format": "rome format . --write"
},
"dependencies": {
"@electron/remote": "^2.0.11",
"@flysoftbeta/qqntim-typings": "workspace:*",
"axios": "^1.5.0",
"chii": "^1.9.0",
"electron": "workspace:*",
"fs-extra": "^11.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semver": "^7.5.4",
"supports-color": "^9.4.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.6.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/semver": "^7.5.2",
"@yarnpkg/sdks": "^3.0.0-rc.50",
"esbuild": "^0.19.2",
"rome": "12.1.3",
"ts-node": "^10.9.1",
"typed-emitter": "^2.1.0",
"typescript": "^5.2.2"
}
}