-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 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
{
"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 && node --import ./src/model_gen/register_loader.js src/scripts/check.ts",
"test": "bun test",
"prepare": "npx simple-git-hooks",
"make": "bun src/scripts/mini-make.js",
"nodemake": "node src/scripts/mini-make.js"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mediapipe/hands": "^0.4.1675469240",
"@threlte/core": "^7.3.1",
"@threlte/extras": "^8.11.4",
"@types/cytoscape": "^3.21.9",
"canvas-confetti": "^1.9.2",
"cdt2d": "^1.0.0",
"comlink": "^4.4.2",
"cytoscape": "^3.32.1",
"monaco-editor": "^0.37.1",
"path-data-parser": "^0.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",
"three": "^0.170.0"
},
"devDependencies": {
"@gltf-transform/core": "^4.3.0",
"@gltf-transform/functions": "^4.3.0",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.6",
"@protobuf-ts/plugin": "^2.11.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.59.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@sveltekit-addons/document": "^1.0.1",
"@swc-node/register": "^1.11.1",
"@types/bun": "^1.3.13",
"@types/node": "^20.10.6",
"@types/shelljs": "^0.10.0",
"@types/siema": "^1.4.11",
"@types/three": "^0.170.0",
"@unocss/extractor-svelte": "^66.6.8",
"@unocss/reset": "^66.6.8",
"@unocss/transformer-directives": "^66.6.8",
"concurrently": "^9.2.1",
"fflate": "^0.8.2",
"lint-staged": "^16.4.0",
"manifold-3d": "^3.2.1",
"meshoptimizer": "^0.20.0",
"ml-matrix": "^6.10.4",
"node-three-gltf": "^2.1.0",
"openscad-parser": "^0.6.3",
"playwright": "^1.59.1",
"shelljs": "^0.10.0",
"simple-git-hooks": "^2.13.1",
"svelte": "^4.2.17",
"svelte-check": "^4.4.7",
"ts-morph": "^28.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3",
"typescript-memoize": "^1.1.1",
"unocss": "^66.6.8",
"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"
}
}