-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "prool",
"type": "module",
"scripts": {
"build": "pnpm clean && tsc --project ./tsconfig.build.json",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only && pnpm format",
"clean": "rimraf src/_lib src/tsconfig.build.tsbuildinfo",
"format": "biome format . --write",
"lint": "biome check . --apply",
"postinstall": "pnpm build",
"test": "vitest --testTimeout 10000",
"test:cov": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"@pimlico/alto": "0.0.0-main.20240606T154257",
"@types/http-proxy": "^1.17.14",
"@types/node": "^20.14.0",
"@types/ws": "^8.5.10",
"@vitest/coverage-v8": "^1.6.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"ws": "^8.17.0"
},
"packageManager": "[email protected]"
}