-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.48 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dreamball",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run prepack",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"prepack": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"check:server": "tsc --project dreamball-server/tsconfig.json --noEmit",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"codegen": "bun run scripts/schemas-verify.ts && zig build schemagen && zig build graphstore-schema",
"schemas:pin": "bun run scripts/schemas-pin.ts",
"schemas:verify": "bun run scripts/schemas-verify.ts",
"mcp": "bun src/mcp/main.ts",
"dev:server": "bun run --watch dreamball-server/src/index.ts",
"demo": "bun run --watch dreamball-server/src/index.ts & vite dev",
"server-smoke": "scripts/server-smoke.sh",
"test:e2e": "playwright test",
"bootstrap": "bun run scripts/bootstrap-kuzu-wasm.ts",
"postinstall": "bun run bootstrap",
"lint:md": "bunx markdownlint-cli 'docs/dreamball-imports.md' 'docs/PROTOCOL.md' 'docs/ARCHITECTURE.md'",
"build:renderer": "vite build --config vite.renderer.config.ts"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/compat": "^2.0.4",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-svelte-csf": "^5.1.2",
"@storybook/addon-vitest": "^10.3.5",
"@storybook/sveltekit": "^10.3.5",
"@storybook/test-runner": "^0.24.3",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@threlte/core": "^8.5.9",
"@threlte/extras": "^9.14.7",
"@types/node": "^22",
"@types/three": "^0.184.0",
"@vitest/browser-playwright": "^4.1.3",
"@vitest/coverage-v8": "^4.1.3",
"ajv": "^8",
"bun-types": "^1.3.12",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.3.5",
"eslint-plugin-svelte": "^3.17.0",
"fast-check": "^4.7.0",
"globals": "^17.4.0",
"playcanvas": "^2.18.0",
"playwright": "^1.59.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"publint": "^0.3.18",
"storybook": "^10.3.5",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"three": "^0.184.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vitest": "^4.1.3",
"vitest-browser-svelte": "^2.1.0"
},
"keywords": [
"svelte"
],
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/eden": "^1.4.9",
"@elysiajs/swagger": "^1.3.1",
"@ladybugdb/core": "^0.15.3",
"@modelcontextprotocol/sdk": "1.29.0",
"@valibot/to-json-schema": "^1.6.0",
"elysia": "^1.4.28",
"kuzu-wasm": "0.11.3",
"valibot": "^1.3.1"
},
"trustedDependencies": [
"@ladybugdb/core",
"@swc/core",
"unrs-resolver"
]
}