-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.68 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
{
"name": "engine",
"version": "1.0.0",
"type": "module",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS=\"--import ./loader.mjs\" vite --open",
"build": "bun run src/cli.ts dsl",
"as:build": "asc as/assembly/index.ts --target debug --transform ./vendor/as-transform-unroll.js",
"as:build:release": "asc as/assembly/index.ts --target release -O --noAssert --transform ./vendor/as-transform-unroll.js",
"bench:vm": "env -u DEBUG bun run test/perf/audio-vm.runtime.bench.ts",
"bench:vm:json": "env -u DEBUG bun run test/perf/audio-vm.runtime.bench.ts --json",
"bench:vm:check": "env -u DEBUG bun run test/perf/audio-vm.bench-gate.ts check",
"bench:vm:record": "env -u DEBUG bun run test/perf/audio-vm.bench-gate.ts record",
"bench:compile": "env -u DEBUG bun run test/perf/compiler-incremental.bench.ts",
"bench:compile:json": "env -u DEBUG bun run test/perf/compiler-incremental.bench.ts --json"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.3",
"@types/audioworklet": "^0.0.92",
"@types/bun": "latest",
"assemblyscript": "^0.28.9",
"editor": "github:loopmaster-xyz/editor",
"visitor-as": "^0.11.4",
"vite": "npm:rolldown-vite@7.3.1",
"vite-plugin-assemblyscript": "github:stagas/vite-plugin-assemblyscript",
"vite-plugin-coop-coep": "github:stagas/vite-plugin-coop-coep",
"vite-plugin-open-in-editor": "github:stagas/vite-plugin-open-in-editor",
"vite-plugin-watch": "^0.3.1"
},
"dependencies": {
"@preact/signals": "^2.8.1",
"preact": "^10.28.4",
"sam-js": "^0.3.1",
"utils": "github:stagas/utils"
},
"overrides": {
"vite": "npm:rolldown-vite@7.3.1"
}
}