-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"name": "statecraft",
"private": true,
"description": "Composable Ethereum integration-test scenarios for TypeScript, viem, and common test runners (examples use Vitest).",
"type": "module",
"packageManager": "bun@1.2.4",
"keywords": [
"ethereum",
"evm",
"vitest",
"jest",
"viem",
"anvil",
"testing",
"statecraft",
"web3"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joepegler/statecraft.git"
},
"bugs": {
"url": "https://github.com/joepegler/statecraft/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter @st8craft/core build",
"changeset": "changeset",
"docs:build": "vocs build",
"docs:dev": "vocs dev",
"docs:preview": "vocs preview",
"release": "changeset publish",
"validate-publish-manifests": "node scripts/validate-publish-manifests.mjs",
"test": "vitest run",
"test:ci": "bun run build && vitest run",
"test:watch": "vitest",
"typecheck": "bun run --filter @st8craft/core typecheck && bun run --filter @st8craft/examples typecheck",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@pimlico/alto": "^0.0.20",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "3.2.4",
"dotenv": "^17.3.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"vocs": "1.0.12",
"zile": "^0.0.22"
}
}