-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 860 Bytes
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
{
"name": "easy-android-to-mac",
"version": "1.0.0",
"private": true,
"description": "Cross-platform file/text sharing between Android and macOS",
"license": "AGPL-3.0-only",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"build:shared": "npm run build -w @easyshare/shared",
"build:desktop": "npm run build -w @easyshare/desktop",
"dev:desktop": "npm run dev -w @easyshare/desktop",
"dev:mobile": "npm run start -w @easyshare/mobile",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"7zip-bin": "^5.2.0",
"electron": "33.2.0",
"typescript": "^5.3.3"
},
"overrides": {
"postcss-nested": "5.0.6"
},
"engines": {
"node": ">=18.0.0"
}
}