-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "program-examples",
"version": "1.0.0",
"description": "### :crab: Rust. :snake: Python. :link: All onchain.",
"scripts": {
"sync-package-json": "ts-node scripts/sync-package-json.ts",
"format:fix": "pnpx @biomejs/biome format --write ./",
"lint:fix": "pnpx @biomejs/biome lint --write ./",
"lint": "pnpx @biomejs/biome lint ./",
"fix": "pnpx @biomejs/biome check --write ./",
"check": "pnpx @biomejs/biome check ./",
"prepare": "husky"
},
"lint-staged": {
"*": ["biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true"]
},
"keywords": [],
"author": "Solana Foundation",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@types/node": "^20.9.0",
"husky": "^9.0.11",
"picocolors": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/web3.js": "^1.95.2",
"anchor-bankrun": "^0.4.0",
"chai": "^5.1.1",
"solana-bankrun": "^0.3.0"
}
}