-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "@solana-nft-programs/creator-standard",
"version": "1.0.0",
"description": "SDK for creator-standard",
"keywords": [
"solana",
"anchor",
"creator-standard"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "[email protected]:solana-nft-programs/creator-standard.git",
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"scripts": {
"test": "jest --setupFiles dotenv/config",
"build": "rm -fr dist/ && tsc -P tsconfig.cjs.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"idl:generate": "./generate-idls.sh",
"typecheck": "tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:ci": "eslint . --max-warnings=0",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ sdk/index.ts"
},
"dependencies": {
"@metaplex-foundation/rustbin": "^0.3.1",
"@metaplex-foundation/solita": "^0.12.2",
"@project-serum/anchor": "^0.25.0",
"@solana/spl-token": "^0.3.5",
"@solana/web3.js": "^1.66.2"
},
"devDependencies": {
"@solana-nft-programs/common": "^1.0.0",
"@metaplex-foundation/mpl-token-metadata": "^1.2.5",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.2.1",
"lint-staged": "^13.0.3",
"node-fetch": "2",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
}
}