-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
69 lines (69 loc) · 2.21 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
62
63
64
65
66
67
68
69
{
"name": "solana-bankrun",
"version": "0.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"napi": {
"name": "solana-bankrun",
"triples": {
"defaults": false,
"additional": [
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-unknown-linux-musl",
"universal-apple-darwin"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.15.2",
"@solana/spl-token": "^0.3.7",
"@types/bs58": "^4.0.1",
"@types/jest": "^29.5.3",
"@types/markdown-it": "^14.1.0",
"@types/node-fetch": "^2.6.4",
"jest": "^29.6.1",
"markdown-it": "^14.1.0",
"markdown-it-include": "^2.0.0",
"rome": "^12.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "5.1.6",
"vuepress": "^1.9.9",
"vuepress-plugin-typedoc": "^0.12.1"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release solana-bankrun --dts internal.d.ts --js internal.js",
"build:debug": "napi build --platform solana-bankrun",
"fmt": "yarn fmt:rust && yarn fmt:js",
"fmt:rust": "cargo fmt",
"fmt:js": "rome format --write solana-bankrun/index.ts tests/ jest.config.ts tsconfig.json package.json",
"lint": "yarn lint:rust && yarn lint:js",
"lint:rust": "cargo clippy",
"lint:js": "rome check solana-bankrun/index.ts tests/ jest.config.ts tsconfig.json package.json",
"prepublishOnly": "napi prepublish -t npm",
"test": "RUST_LOG= jest --runInBand",
"tsc": "tsc && cp solana-bankrun/internal.d.ts dist/internal.d.ts",
"universal": "napi universal",
"bumpPatch": "yarn version --no-git-tag-version --patch && cargo bump patch && napi version && cargo tree",
"bumpMinor": "yarn version --no-git-tag-version --minor && cargo bump minor && napi version && cargo tree",
"bumpMajor": "yarn version --no-git-tag-version --major && cargo bump major && napi version && cargo tree",
"docs:dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"docs:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs"
},
"dependencies": {
"@solana/web3.js": "^1.68.0",
"bs58": "^4.0.1"
}
}