forked from metaplex-foundation/mpl-token-auth-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.52 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": "mpl-token-auth-rules-workspace",
"packageManager": "yarn@3.2.0-rc.12",
"version": "0.0.0",
"description": "Workspace for MPL Token Authorization Rules. MPL Token Authorization Rules can be used to restrict common token operations",
"homepage": "https://metaplex.com",
"repository": "https://github.com/metaplex-foundation/mpl-token-auth-rules.git",
"author": "Metaplex Maintainers <contact@metaplex.com>",
"license": "Apache-2.0",
"scripts": {
"build:rust": "(cd program; cargo build-bpf)",
"build:sdk": "yarn workspace @metaplex-foundation/mpl-token-auth-rules build",
"build:docs": "yarn workspace @metaplex-foundation/mpl-token-auth-rules 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",
"amman": "./scripts/amman.sh",
"fix:format": "(cd program; cargo fmt) && yarn workspace @metaplex-foundation/mpl-token-auth-rules fix:prettier",
"lint": "(cd program; cargo clippy) && yarn workspace @metaplex-foundation/mpl-token-auth-rules lint"
},
"workspaces": [
"packages/*",
"cli"
],
"devDependencies": {
"@metaplex-foundation/amman": "^0.12.1",
"@metaplex-foundation/solita": "^0.19.3",
"@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"
}
}