forked from rianadon/Cosmos-Keyboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.43 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
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 && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"prepare": "npx simple-git-hooks"
},
"dependencies": {
"@mdi/js": "^7.3.67",
"@mediapipe/hands": "^0.4.1675469240",
"@threlte/core": "^5.0.9",
"@threlte/extras": "^4.9.3",
"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.15.1",
"simplicial-complex-boundary": "^1.0.1",
"svd-js": "^1.1.1",
"svelte-cubed": "^0.2.1",
"svelte-easy-popover": "^1.0.0",
"three": "^0.150.0"
},
"devDependencies": {
"@gltf-transform/core": "^3.9.0",
"@gltf-transform/functions": "^3.9.0",
"@protobuf-ts/plugin": "^2.8.2",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@sveltekit-addons/document": "^1.0.1",
"@threlte/preprocess": "^0.0.2",
"@types/concaveman": "^1.1.3",
"@types/node": "^20.10.6",
"@types/three": "^0.149.0",
"@unocss/extractor-svelte": "^0.52.7",
"@unocss/reset": "^0.52.7",
"@unocss/transformer-directives": "^0.52.7",
"canvas": "^2.11.2",
"concurrently": "^8.2.2",
"lint-staged": "^15.1.0",
"manifold-3d": "^2.2.2",
"meshoptimizer": "^0.20.0",
"ml-matrix": "^6.10.4",
"openscad-parser": "^0.6.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"simple-git-hooks": "^2.9.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-sequential-preprocessor": "^2.0.1",
"ts-morph": "^20.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-memoize": "^1.1.1",
"unocss": "^0.52.7",
"vite": "^4.3.0"
},
"optionalDependencies": {
"gl": "^6.0.2"
},
"type": "module",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json,md,svelte}": "npx dprint fmt"
}
}