-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "peninsula-portal",
"productName": "PensinulaPortal",
"version": "2024.0.0",
"description": "Toolbox application for 6036",
"author": {
"name": "Jeffrey Fan",
"email": "[email protected]"
},
"main": "src/main/main.js",
"scripts": {
"start": "electron src/main/main.js",
"package": "electron-builder build",
"stats": "scc --not-match 'src/assets/modules/three-addons.*'"
},
"repository": {
"type": "git",
"url": "https://github.com/team6036/peninsulaportal.git"
},
"bugs": "https://github.com/team6036/peninsulaportal/issues",
"homepage": "https://github.com/team6036/peninsulaportal",
"dependencies": {
"@lume/three-meshline": "^4.0.5",
"@msgpack/msgpack": "^3.0.0-beta2",
"compare-versions": "^6.1.0",
"electron-fetch": "^1.9.1",
"fuse.js": "^7.0.0",
"ionicons": "^7.4.0",
"mathjs": "^12.3.0",
"octokit": "^3.1.2",
"png2icons": "^2.0.1",
"socket.io-client": "^4.7.2",
"socket.io-stream": "^0.9.1",
"tar": "^7.0.1",
"tba-api-v3client": "^3.3.1",
"three": "^0.160.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"electron": "^28.2.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "org.peninsularobotics.peninsulaportal",
"copyright": "Copyright © 2024 FRC 6036",
"npmRebuild": false,
"publish": [],
"files": [
"node_modules/three/**/*",
"node_modules/ionicons/**/*",
"src/**/*",
"docs/**/*",
"package.json",
"README.md"
],
"fileAssociations": [],
"mac": {
"target": "dmg",
"icon": "src/assets/app/icon.icns",
"notarize": false
},
"linux": {
"target": [
"AppImage",
"snap",
"flatpak",
"deb",
"rpm",
"pacman"
],
"icon": "src/assets/app/icon.png",
"category": "Utility"
},
"flatpak": {
"runtimeVersion": "22.08",
"baseVersion": "22.08"
},
"win": {
"target": "nsis",
"icon": "src/assets/app/icon.ico"
},
"dmg": {
"backgroundColor": "#ffffff",
"iconSize": 75,
"window": {
"width": 450,
"height": 300
},
"contents": [
{
"x": 125,
"y": 125
},
{
"x": 325,
"y": 125,
"type": "link",
"path": "/Applications"
}
]
}
}
}