generated from stegaBOB/solana-program-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.15 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
{
"name": "zero-copy-test-workspace",
"packageManager": "[email protected]",
"version": "0.0.0",
"description": "",
"author": "Sammy Harris <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build:rust": "(cd program; cargo build-bpf)",
"build:docs": "yarn workspace zero-copy-test build:docs",
"build": "yarn build:rust && yarn solita && yarn fix:format && yarn build:sdk && yarn build:docs",
"update-sol-deps": "./scripts/update-solana-dependencies.sh",
"rename": "./scripts/rename.sh",
"amman": "./scripts/amman.sh",
"fix:format": "(cd program; cargo fmt) && yarn workspace zero-copy-test fix:prettier",
"lint": "(cd program; cargo clippy) && yarn workspace zero-copy-test lint"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@metaplex-foundation/amman": "^0.12.1",
"@metaplex-foundation/solita": "^0.19.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}