forked from DavidHDev/svelte-bits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.84 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
{
"name": "svelte-bits",
"version": "0.0.1",
"scripts": {
"dev": "concurrently -c blue,green -n registry,app \"npm run dev:registry\" \"npm run dev:app\"",
"dev:registry": "jsrepo build --watch",
"dev:app": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"test:e2e": "playwright test",
"registry:build": "jsrepo build"
},
"license": "MIT",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@jsrepo/shadcn": "^7.0.0",
"@playwright/test": "^1.59.1",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@types/matter-js": "^0.20.2",
"@types/node": "^25.6.0",
"@types/three": "^0.184.0",
"add": "^2.0.6",
"concurrently": "^9.2.1",
"eslint": "^9.18.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"jsrepo": "^3.7.0",
"pnpm": "^10.33.3",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.6",
"wrangler": "^4.87.0"
},
"keywords": [
"svelte"
],
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"@shikijs/langs": "^4.0.2",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"face-api.js": "^0.22.2",
"geist": "^1.7.0",
"gl-matrix": "^3.4.4",
"gsap": "^3.15.0",
"lenis": "^1.3.23",
"matter-js": "^0.20.0",
"meshline": "^3.3.1",
"motion": "^12.38.0",
"ogl": "^1.0.11",
"postprocessing": "^6.39.1",
"shiki": "^4.0.2",
"three": "^0.184.0",
"troika-three-text": "^0.52.4"
}
}