-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
38 lines (38 loc) · 1.21 KB
/
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
34
35
36
37
38
{
"workspaces": ["packages/*", "templates/*", "plugins/*"],
"private": true,
"author": "ZeroDev",
"type": "module",
"sideEffects": false,
"devDependencies": {
"@ambire/signature-validator": "^1.3.1",
"@biomejs/biome": "^1.0.0",
"@changesets/changelog-git": "^0.1.14",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@size-limit/esbuild-why": "^9.0.0",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/semver": "^7.5.8",
"ethers": "5",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.9.0",
"size-limit": "^9.0.0",
"tslib": "^2.6.2",
"typescript": "~5.3.0"
},
"description": "",
"keywords": [],
"license": "MIT",
"scripts": {
"build": "bash build-all.sh",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "bun run lint --write",
"changeset": "changeset",
"changeset:release": "bun run build && changeset publish",
"changeset:version": "changeset version && bun install --lockfile-only"
},
"simple-git-hooks": {
"pre-commit": "bun run format && bun run lint:fix"
}
}