-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 960 Bytes
/
package.json
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
{
"name": "zbind",
"version": "0.0.11",
"description": "Zig-TypeScript binding generator",
"author": "Juha Järvi",
"license": "0BSD",
"homepage": "https://github.com/nelipuu/zbind/#readme",
"bugs": {
"url": "https://github.com/nelipuu/zbind/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:nelipuu/zbind.git"
},
"bin": {
"zbind": "./bin/zbind"
},
"main": "dist/index.js",
"scripts": {
"prepare": "./run src/patch && tsc -p src",
"test-napi": "zig build -Doptimize=ReleaseFast && zbind test/addon.node test/lib.ts && ./run test",
"test-wasm": "zig build -Doptimize=ReleaseSmall -Dtarget=wasm32-wasi && zbind test/addon.wasm test/lib.ts && ./run test",
"test": "./run src/patch && tsc -p src && npm run test-napi && npm run test-wasm"
},
"devDependencies": {
"@types/node": "^20.12.12",
"node-api-headers": "^1.1.0",
"typescript": "^5.4.5",
"zbind": "file:."
}
}