-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.04 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
{
"name": "@slot0/forky",
"version": "0.2.8",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"description": "Fast and efficient EVM forks",
"keywords": [],
"module": "./lib.esm/index.js",
"sideEffects": false,
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:jankjr/forky.git"
},
"main": "index.node",
"scripts": {
"test": "cargo test",
"install": "npm run build",
"cargo-build": "cargo build --message-format=json > cargo.log",
"cross-build": "cross build --message-format=json > cross.log",
"postcargo-build": "neon dist < cargo.log",
"postcross-build": "neon dist -m /target < cross.log",
"debug": "npm run cargo-build --",
"build": "npm run cargo-build -- --release",
"cross": "npm run cross-build -- --release"
},
"type": "commonjs",
"types": "types.d.ts",
"files": [
"index.node",
"types.d.ts",
"cargo.toml",
"cargo.lock",
"src/*.rs"
],
"license": "ISC",
"dependencies": {
"@neon-rs/cli": "0.1.73"
}
}