-
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
{
"name": "@yamori/backend",
"private": true,
"type": "module",
"main": "lib/worker.js",
"scripts": {
"check": "wireit",
"make": "wireit",
"clean": "rm -rf zig-out .zig-cache lib"
},
"wireit": {
"make:wasm": {
"command": "zig build",
"files": ["src/**/*.zig", "build.zig", "build.zig.zon"],
"clean": false,
"output": ["zig-out/**"]
},
"make:js": {
"command": "tsc -p tsconfig.build.jsonc",
"files": ["src/**/*.ts", "tsconfig.build.jsonc"],
"clean": "if-file-deleted",
"output": ["lib/**"],
"dependencies": ["tsconfig"],
"packageLocks": ["bun.lockb"]
},
"make": {
"dependencies": ["make:wasm", "make:js"]
},
"check": {
"command": "tsc",
"files": ["src/*.ts", "package.json"],
"output": [],
"dependencies": ["tsconfig"],
"packageLocks": ["bun.lockb"]
},
"tsconfig": {
"files": ["tsconfig.json", "../../tsconfig.jsonc"]
},
"js": {
"files": ["lib/**/*.js"],
"dependencies": [
{
"script": "make:js",
"cascade": false
}
]
},
"wasm": {
"files": ["zig-out/bin/*.wasm"],
"dependencies": [
{
"script": "make:wasm",
"cascade": false
}
]
}
}
}