-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 963 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 963 Bytes
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": "@cartesi/devnet",
"version": "2.0.0-alpha.11",
"license": "Apache-2.0",
"repository": "cartesi/cli",
"scripts": {
"build": "run-s build:soldeer build:forge build:dump",
"build:dump": "bun build.ts",
"build:forge": "forge build",
"build:soldeer": "forge soldeer install",
"clean": "run-p clean:dump clean:forge",
"clean:dump": "rm -rf broadcast build deployments anvil_state.json",
"clean:forge": "forge clean",
"fmt:check": "forge fmt --check",
"fmt:write": "forge fmt"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.3.2",
"listr2": "^10.1.0",
"modern-tar": "^0.7.3",
"npm-run-all": "^4.1.5",
"p-retry": "^7.1.1",
"semver": "^7.7.3",
"viem": "^2.45.3"
},
"files": [
"anvil_state.json",
"deployments"
]
}