-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.41 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.41 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
{
"name": "loopmaster",
"version": "3.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "concurrently -k -n web,api -c green,blue \"bun run dev:web\" \"bun run dev:api\"",
"dev:web": "NODE_OPTIONS=\"--import ./loader.mjs\" vite --open",
"dev:api": "deno run -A --unstable-kv --env-file=.env --watch ./deno/server.ts",
"install:all": "bun run install:web && bun run install:api",
"install:web": "bun install",
"install:api": "deno install --no-npm",
"build": "NODE_OPTIONS=\"--import ./loader.mjs\" vite build"
},
"dependencies": {
"@md-parser/parser": "^0.11.1",
"@phosphor-icons/react": "^2.1.10",
"@preact/signals": "^2.8.1",
"@preact/signals-core": "^1.13.0",
"editor": "github:loopmaster-xyz/editor",
"engine": "github:loopmaster-xyz/engine",
"jszip": "^3.10.1",
"preact": "^10.28.4",
"react-social-icons": "^6.25.0",
"wav-encoder": "^1.3.0",
"utils": "github:stagas/utils",
"zod": "^4.3.6"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.3",
"@types/node": "^24.10.15",
"@types/wav-encoder": "^1.3.3",
"concurrently": "^9.2.1",
"typescript": "~5.9.3",
"vite-plugin-coop-coep": "github:stagas/vite-plugin-coop-coep",
"vite-plugin-open-in-editor": "github:stagas/vite-plugin-open-in-editor",
"vite": "npm:rolldown-vite@7.3.1"
},
"overrides": {
"vite": "npm:rolldown-vite@7.3.1"
}
}