-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
118 lines (118 loc) · 2.79 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dexter_dev_env",
"productName": "dexter_dev_env",
"version": "3.9.2",
"release_date": "Apr 5, 2024",
"description": "Dexter Development Environment for programming the Dexter robot.",
"author": "Fry",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/cfry/dde.git"
},
"bugs": {
"url": "https://github.com/cfry/dde/issues"
},
"homepage": "https://github.com/cfry/dde",
"main": "main.js",
"scripts": {
"start": "electron main",
"build": "electron-builder build --dir",
"test-build": "electron-builder build --publish never",
"release": "electron-builder build --publish always",
"clean": "rimraf dist",
"postinstall": "npm run rebuild",
"rebuild": "electron-builder install-app-deps"
},
"keywords": [
"robot",
"Dexter",
"Haddington"
],
"dependencies": {
"@electron/remote": "^2.1.1",
"adm-zip": "^0.5.5",
"asap": "^2.0.6",
"awesomplete": "^1.1.2",
"capture-website": "^3.2.0",
"dat.gui": "^0.7.7",
"dom-to-image-update": "^2.7.0",
"electron-context-menu": "^0.8.0",
"eslint": "^5.16.0",
"esprima": "^3.1.3",
"fs-path": "0.0.25",
"googleapis": "^39.2.0",
"is-base64": "^1.1.0",
"jpeg-js": "^0.3.3",
"jquery": "^3.4.0",
"js-beautify": "^1.13.13",
"litegraph.js": "^0.7.9",
"mark.js": "^8.11.1",
"mathjs": "^5.10.3",
"multicast-dns": "^7.2.0",
"nano-time": "^1.0.0",
"nouislider": "^13.1.1",
"npm-programmatic": "^0.0.12",
"opencv.js": "^1.2.1",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.1.2",
"ping": "^0.2.2",
"plotly.js-dist": "^1.58.4",
"pump": "^3.0.0",
"request": "^2.79.0",
"rotating-calipers": "0.0.0",
"semver": "^5.4.1",
"serialport": "^12.0.0",
"shepherd.js": "^8.0.2",
"simple-get": "^3.1.0",
"ssh2-promise": "^0.1.5",
"three": "^0.118.3",
"three-fbx-loader": "^1.0.3",
"three-gltf-loader": "^1.111.0",
"three-orbitcontrols": "^2.110.3",
"three-stl-loader": "^1.0.6",
"three-text2d": "^0.6.0",
"webmidi": "^2.2.0",
"ws": "^8.8.1"
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^23.6.0",
"rimraf": "^2.6.1"
},
"build": {
"appId": "com.haddington.dde",
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"perMachine": true
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"armv7l",
"arm64"
]
}
],
"category": "Development;Education;Robotics"
}
}
}