-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 840 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 840 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
{
"name": "program-examples",
"version": "1.0.0",
"description": "Solana program examples for Anchor, Quasar, Pinocchio, Native Rust, and ASM.",
"scripts": {
"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 --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"packageManager": "pnpm@10.33.0",
"keywords": [],
"author": "Quicknode",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "^20.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.4.3",
"typescript": "^5.2.2"
}
}