-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.2 KB
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
{
"name": "doom-nft-program",
"version": "1.0.0",
"description": "Doom NFT Program",
"packageManager": "bun@1.3.10",
"scripts": {
"prepare": "lefthook install",
"format": "bun run format:rust && bun run format:ts",
"format:check": "bun run format:rust:check && bun run format:ts:check",
"format:rust": "cargo fmt --all",
"format:rust:check": "cargo fmt --all --check",
"format:ts": "prettier . --write --ignore-unknown",
"format:ts:check": "prettier . --check --ignore-unknown",
"lint": "cargo clippy --workspace --all-targets --all-features -- -D warnings",
"build:sbf:test": "./scripts/build-test-sbf.sh",
"test:contract": "./scripts/test-contract-v1.sh",
"devnet:init": "bun run ./scripts/devnet/init.ts",
"devnet:reserve": "bun run ./scripts/devnet/reserve.ts",
"devnet:mint": "bun run ./scripts/devnet/mint.ts",
"metaplex:create:collection": "bun run ./scripts/metaplex/create-collection.ts",
"metaplex:create": "bun run ./scripts/metaplex/create.ts",
"metaplex:mint": "bun run ./scripts/metaplex/create.ts",
"metaplex:fetch": "bun run ./scripts/metaplex/fetch.ts",
"metaplex:update": "bun run ./scripts/metaplex/update.ts",
"metaplex:transfer": "bun run ./scripts/metaplex/transfer.ts",
"metaplex:burn": "bun run ./scripts/metaplex/burn.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "cargo test --workspace --exclude tests && bun run test:contract",
"check": "bun run format:check && bun run lint && bun run test && bun run typecheck"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@metaplex-foundation/mpl-core": "^1.7.0",
"@metaplex-foundation/umi": "^1.5.1",
"@metaplex-foundation/umi-bundle-defaults": "^1.5.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"lefthook": "2.1.3",
"mocha": "^9.0.3",
"prettier": "3.8.1",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.3"
},
"prettier": {
"semi": true,
"singleQuote": false,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true,
"bracketSameLine": true
}
}