-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.4 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
{
"name": "vision",
"version": "0.1.0",
"description": "A new and intuitive way of controlling intelligent devices developed from first principles for the event industry.",
"main": "build/index.js",
"repository": "[email protected]:oshifty/vision.git",
"author": "Lukas Runge <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"postinstall": "tsx tools/fetchUDR.ts",
"doc:build": "typedoc",
"doc": "concurrently \"typedoc --watch --preserveWatchOutput\" \"browser-sync start -c browsersync.json\"",
"dev": "npm run build-worker && vite dev",
"dev:watch:worker": "concurrently \"vite dev\" \"npm run build-worker --watch\"",
"dev:host": "vite dev --host",
"build": "vite build && node tools/build.js && node tools/build-worker.js",
"build-worker": "node tools/build-worker.js",
"preview": "node build/entrypoint.js",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.2",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.20.4",
"@types/node": "^20.5.6",
"@types/polka": "^0.5.4",
"@types/three": "^0.155.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"browser-sync": "^2.29.3",
"concurrently": "^8.2.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"nodemon": "^3.0.1",
"polka": "^0.5.2",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"tsx": "^3.12.7",
"typedoc": "^0.24.8",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vitest": "^0.32.2"
},
"type": "module",
"dependencies": {
"@zerodevx/svelte-json-view": "^1.0.7",
"ajv": "^8.12.0",
"comlink": "^4.4.1",
"esbuild": "0.19.2",
"fast-xml-parser": "^4.2.7",
"fetch-cookie": "^2.1.0",
"gdtf-types": "^1.0.0",
"json-schema-to-typescript": "^13.0.2",
"jszip": "^3.10.1",
"three": "^0.155.0",
"typescript-json-schema": "^0.60.0"
}
}