-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@solana-nft-programs/generator",
"version": "0.0.1",
"keywords": [
"solana",
"anchor"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"license": "AGPL-3.0",
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md}": "prettier --write"
},
"resolutions": {
"bn.js": "^5.2.0",
"@types/bn.js": "^5.1.0",
"@solana/web3.js": "=1.32.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.cjs.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"idl:generate": "./scripts/generate-idls-types.sh",
"typecheck": "tsc",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"test:e2e": "anchor test --skip-build 'tests/**/*.ts'",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ src/index.ts",
"prepare": "husky install"
},
"dependencies": {
"@solana-nft-programs/common": "1.0.0",
"@solana-nft-programs/token-manager": "^1.0.0",
"@metaplex-foundation/mpl-token-metadata": "^1.2.5"
},
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/anchor-contrib": "^1.12.44",
"@saberhq/chai-solana": "^1.12.44",
"@saberhq/eslint-config": "^1.12.44",
"@saberhq/solana-contrib": "^1.12.44",
"@saberhq/token-utils": "^1.12.44",
"@saberhq/tsconfig": "^1.12.44",
"@solana/web3.js": "=1.32.0",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@types/prettier": "^2.4.3",
"bn.js": "^5.2.0",
"chai": "=4.3.4",
"eslint": "^8.7.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.0",
"jsbi": "^4.1.0",
"lint-staged": "^12.2.2",
"mocha": "^9.1.4",
"mocha-junit-reporter": "^2.0.2",
"prettier": "^2.5.1",
"serverless-domain-manager": "^6.0.3",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@project-serum/anchor": ">=0.19",
"@saberhq/anchor-contrib": "^1.11",
"@saberhq/solana-contrib": "^1.11",
"@saberhq/token-utils": "^1.11",
"@solana/web3.js": "^1",
"bn.js": "^5.2.0",
"jsbi": "^3 || ^4"
},
"packageManager": "[email protected]"
}