-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 847 Bytes
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
{
"name": "zigpty",
"version": "0.0.4",
"repository": "pithings/zigpty",
"files": [
"dist",
"prebuilds"
],
"type": "module",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "zig build --release && obuild",
"build:zig": "zig build --release",
"build:zig:debug": "zig build",
"fmt": "oxfmt . && zig fmt zig/",
"fmt:check": "oxfmt --check . && zig fmt --check zig/",
"test": "zig build test && vitest run",
"test:bun": "zig build test && bun test",
"release": "bun run build && changelogen --release --push --publish"
},
"packageManager": "bun@1.3.10",
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"changelogen": "^0.6.2",
"obuild": "^0.4.32",
"oxfmt": "^0.41.0",
"typescript": "^5.9.3",
"vitest": "^3.1.4"
}
}