-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 922 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
32
33
{
"name": "@zorsh/zorsh",
"version": "0.3.1",
"description": "A TypeScript-first implementation of the Borsh binary serialization format, with a modern Zod-like API and full type inference.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"lefthook": "lefthook install",
"check-exports": "attw --pack .",
"release": "pnpm build && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.13.2",
"lefthook": "^1.10.10",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}