-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ardudeck",
"version": "0.0.28-alpha",
"private": true,
"description": "ArduDeck - Modern Ground Control Station",
"author": {
"name": "Ruben M",
"url": "https://github.com/rubenCodeforges"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/rubenCodeforges/ardudeck.git"
},
"homepage": "https://github.com/rubenCodeforges/ardudeck#readme",
"bugs": {
"url": "https://github.com/rubenCodeforges/ardudeck/issues"
},
"keywords": [
"ardupilot",
"ground-control-station",
"gcs",
"drone",
"uav",
"mavlink",
"mission-planner",
"quadcopter",
"pixhawk",
"electron",
"react",
"typescript"
],
"scripts": {
"start": "pnpm --filter @ardudeck/desktop dev",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"generate": "turbo run generate",
"clean": "turbo run clean && rm -rf node_modules",
"sync-version": "node -e \"const r=require('./package.json'),d=require('./apps/desktop/package.json');d.version=r.version;require('fs').writeFileSync('./apps/desktop/package.json',JSON.stringify(d,null,2)+'\\n')\"",
"package": "pnpm sync-version && pnpm --filter @ardudeck/desktop package"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"prettier": "^3.4.2",
"eslint": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2"
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=20.0.0"
}
}