-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
79 lines (79 loc) · 2.33 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
{
"name": "cosmos",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"doc": "venv/bin/mkdocs serve",
"dev:all": "concurrently npm:dev npm:doc",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"prepare": "npx simple-git-hooks"
},
"dependencies": {
"@mdi/js": "^7.3.67",
"@mediapipe/hands": "^0.4.1675469240",
"@threlte/core": "^7.3.1",
"@threlte/extras": "^8.11.4",
"canvas-confetti": "^1.9.2",
"cdt2d": "^1.0.0",
"comlink": "^4.4.1",
"monaco-editor": "^0.37.1",
"pako": "^2.1.0",
"qrious": "^4.0.2",
"replicad": "^0.17.0",
"siema": "^1.5.1",
"simplicial-complex-boundary": "^1.0.1",
"svd-js": "^1.1.1",
"svelte-easy-popover": "^1.0.0",
"three": "^0.164.1"
},
"devDependencies": {
"@gltf-transform/core": "^4.0.4",
"@gltf-transform/functions": "^4.0.4",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.2",
"@protobuf-ts/plugin": "^2.8.2",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.16",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@sveltekit-addons/document": "^1.0.1",
"@types/bun": "^1.1.1",
"@types/concaveman": "^1.1.3",
"@types/node": "^20.10.6",
"@types/siema": "^1.4.11",
"@types/three": "^0.164.1",
"@unocss/extractor-svelte": "^0.61.3",
"@unocss/reset": "^0.61.3",
"@unocss/transformer-directives": "^0.61.3",
"concurrently": "^8.2.2",
"fflate": "^0.8.2",
"lint-staged": "^15.1.0",
"manifold-3d": "^2.2.2",
"meshoptimizer": "^0.20.0",
"ml-matrix": "^6.10.4",
"node-three-gltf": "^1.8.2",
"openscad-parser": "^0.6.1",
"playwright": "^1.45.1",
"simple-git-hooks": "^2.11.1",
"svelte": "^4.2.17",
"svelte-check": "^3.8.1",
"ts-morph": "^20.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"typescript-memoize": "^1.1.1",
"unocss": "^0.61.3",
"vite": "^5.3.3"
},
"type": "module",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json,md,svelte}": "npx dprint fmt --allow-no-files"
}
}