forked from G-Ray/pikatorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 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
{
"name": "pikatorrent-monorepo",
"version": "0.0.0",
"repository": "https://github.com/G-Ray/pikatorrent",
"scripts": {
"version": "node ./scripts/version.js",
"start": "npm run start --workspace=@pikatorrent/app",
"android": "npm run android --workspace=@pikatorrent/app",
"ios": "npm run ios --workspace=@pikatorrent/app",
"web": "npm run web --workspace=@pikatorrent/app",
"desktop": "npm -w @pikatorrent/desktop start",
"hub": "npm start --workspace=@pikatorrent/hub",
"node": "npm start --workspace=@pikatorrent/node",
"site": "npm --workspace=@pikatorrent/site run dev",
"cli": "npm --workspace=pikatorrent start",
"postinstall": "patch-package",
"build:web": "npm run build:web --workspace=@pikatorrent/app",
"build:site": "npm run build --workspace=@pikatorrent/site",
"build:desktop": "npm -w @pikatorrent/desktop run make",
"publish:desktop": "npm -w @pikatorrent/desktop run publish"
},
"devDependencies": {
"cross-env": "^7.0.3",
"patch-package": "^8.0.0"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"license": "GPL-3.0",
"dependencies": {
"commander": "^10.0.1"
}
}