-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": "true",
"repository": "github:fleet-sdk/fleet",
"license": "MIT",
"type": "module",
"scripts": {
"clear": "pnpm -r exec rm -rf dist",
"fix": "run-s fix:*",
"test": "run-s test:*",
"watch:unit": "vitest --no-coverage --reporter=dot",
"watch:types": "vitest typecheck --reporter=dot",
"ci:publish": "pnpm clear && pnpm -r build && changeset publish --provenance",
"fix:format": "biome format --write",
"fix:lint": "biome lint --write",
"test:lint": "biome lint",
"test:format": "biome format",
"test:unit": "vitest run --no-coverage --environment=node",
"test:unit-browser": "vitest run --no-coverage --environment=happy-dom",
"test:unit-edge": "vitest run --no-coverage --environment=edge-runtime",
"cov:check": "vitest run --coverage",
"cov:open": "vitest run --coverage ; open-cli coverage/index.html",
"bench": "vitest bench",
"snapshot:version": "changeset version --snapshot snapshot",
"snapshot:publish": "pnpm clear && pnpm -r build && changeset publish --no-git-tag --tag snapshot"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@edge-runtime/vm": "^4.0.3",
"@fleet-sdk/common": "workspace:^",
"@fleet-sdk/crypto": "workspace:^",
"@types/diff": "^5.2.3",
"@vitest/coverage-v8": "^2.1.3",
"ergo-lib-wasm-nodejs": "^0.28.0",
"fast-check": "^3.22.0",
"happy-dom": "^15.7.4",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"sigmastate-js": "0.4.6",
"tsup": "^8.3.4",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"pnpm": {
"requiredScripts": [
"build"
]
}
}