-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.35 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.35 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
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
{
"name": "tactjam",
"version": "0.2.0",
"description": "TactJam GUI that enables communicating with a TactJam device as well as saving and loading tacton data from a server.",
"homepage": "https://github.com/TactileVision/TactJam-client/",
"main": "build/main.js",
"scripts": {
"build": "webpack",
"start": "npm run build && electron build/main.js",
"run": "electron build/main.js",
"test": "electron src/test-main.js",
"dist": "npm run build && electron-builder -c.mac.identity=null",
"compile:windows": "electron-builder --win --x64",
"compile:macos": "electron-builder --mac -c.mac.identity=null",
"compile:linux": "electron-builder --linux"
},
"keywords": [],
"author": "Tactile Vision",
"license": "MIT",
"devDependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-select": "^4.0.12",
"electron": "^10.4.7",
"electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.5",
"html-webpack-plugin": "^4.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@material-ui/lab": "^4.0.0-alpha.57",
"@react-three/drei": "^2.2.15",
"@vxna/gltf-loader": "^2.0.1",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"d3": "^6.3.1",
"file-loader": "^6.2.0",
"i18next": "^19.8.5",
"notistack": "^1.0.5",
"react-i18next": "^11.8.5",
"react-select": "^4.0.2",
"react-three-fiber": "^5.3.11",
"serialport": "^9.0.6",
"three": "^0.124.0",
"vtp.js": "^0.3.0"
},
"build": {
"appId": "TactJam.GUI",
"productName": "TactJam",
"copyright": "Copyright © 2021 Tactile Vision (MIT License)",
"files": [
"build/*",
"build/webpack-assets/*",
"build/icons/icon.*"
],
"mac": {
"category": "public.app-category.graphics-design",
"target": [
"dmg",
"pkg"
],
"icon": "build/icons/icon.png"
},
"dmg": {
"title": "TactJam"
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"executableName": "TactJam"
}
},
"repository": {
"type": "git",
"url": "https://github.com/TactileVision/TactJam-client/"
}
}