forked from ThierryM1212/fleet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.96 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
56
57
58
59
60
61
{
"private": "true",
"packageManager": "[email protected]",
"repository": "fleet-sdk/fleet",
"license": "MIT",
"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:prettier": "prettier ./**/*.ts --write",
"fix:lint": "eslint ./ --ext .ts --fix",
"test:lint": "eslint ./ --ext .ts",
"test:prettier": "prettier ./**/*.ts --list-different",
"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"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@edge-runtime/vm": "^3.1.7",
"@fleet-sdk/common": "workspace:^",
"@fleet-sdk/crypto": "workspace:^",
"@types/diff": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "^0.34.6",
"ergo-lib-wasm-nodejs": "^0.26.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.29.0",
"fast-check": "^3.13.2",
"happy-dom": "^12.10.3",
"npm-run-all": "^4.1.5",
"open-cli": "^7.2.0",
"prettier": "^3.0.3",
"sigmastate-js": "0.2.1-snapshot.8a862d393",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"type-fest": "^4.7.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=14",
"pnpm": ">=8"
},
"pnpm": {
"requiredScripts": [
"build"
]
}
}