-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 962 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 962 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
33
34
35
36
{
"name": "guillotine-mini",
"version": "0.1.0",
"description": "Minimal, correct, and well-tested Ethereum Virtual Machine (EVM) implementation in Zig",
"type": "module",
"scripts": {
"genesis": "bun scripts/genesis.ts",
"test:isolate": "bun scripts/isolate-test.ts",
"test:subset": "bun scripts/test-subset.ts",
"fix:specs": "bun scripts/fix-specs.ts",
"test": "bun --cwd client-ts run test"
},
"keywords": [
"ethereum",
"evm",
"virtual-machine",
"blockchain",
"zig"
],
"author": "William Cory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/evmts/guillotine-mini.git"
},
"homepage": "https://github.com/evmts/guillotine-mini#readme",
"bugs": {
"url": "https://github.com/evmts/guillotine-mini/issues"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@types/bun": "latest",
"fzstd": "^0.1.1",
"typescript": "^5.3.0"
}
}