-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.35 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
{
"name": "slimetora",
"productName": "SlimeTora",
"type": "module",
"version": "1.4.0",
"description": "A middleware program that connects the HaritoraX full body trackers to the SlimeVR server",
"private": true,
"author": {
"name": "BracketProto",
"url": "https://bracketproto.com"
},
"maintainers": [
{
"name": "JovannMC",
"email": "[email protected]",
"url": "https://jovann.me"
}
],
"main": "dist/main.js",
"scripts": {
"start": "npm run preload && cross-env DEVELOPMENT=true && electron .",
"dev": "cross-env DEVELOPMENT=true && tsc && npm run copy-files && electron .",
"build": "npm run preload && npx @electron/packager . SlimeTora --arch=x64,arm64 --overwrite --out=build/ --icon=src/static/images/icon.ico --asar --extra-resource=src/languages --prune --ignore=\"^/(src|docs|.vscode|.eslintrc.cjs|.prettierrc|tsconfig.json|README.md|.gitignore)$\"",
"preload": "npx @electron/rebuild && npx del-cli dist/ && tsc && npm run copy-files",
"copy-files": "npx copyfiles -u 1 \"src/**/*.js\" \"src/**/*.html\" \"src/**/*.css\" \"src/**/*.ico\" \"src/**/*.png\" \"src/**/*.webp\" \"src/**/*.webm\" \"src/**/*.svg\" \"src/**/*.fbx\" src/languages/* dist/",
"build-bulma": "npx sass --watch ./src/static/css/index.scss ./src/static/css/index.css",
"lint": "eslint ./src/**/*.ts"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@electron/packager": "^18.3.6",
"@electron/rebuild": "^3.7.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/serialport": "^8.0.5",
"@types/three": "^0.171.0",
"bulma": "^1.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"electron": "^31.7.6",
"eslint": "^9.17.0",
"node-gyp-build": "^4.8.4",
"sass": "^1.83.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@slimevr/common": "^0.1.2",
"@slimevr/firmware-protocol": "^0.6.5",
"@slimevr/tracker-emulation": "^0.2.4",
"haritorax-interpreter": "^3.2.3",
"i18next": "^24.1.2",
"loc-i18next": "^0.1.6",
"lodash-es": "^4.17.21",
"quaternion": "^2.0.1",
"three": "^0.171.0"
}
}