forked from goriunov/cardinal-staking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
86
87
88
89
90
91
92
93
94
{
"name": "@cardinal/staking",
"version": "1.5.31",
"description": "Cardinal stake pool SDK",
"keywords": [
"solana",
"anchor",
"cardinal"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "[email protected]:cardinal-labs/cardinal-stake-pool.git",
"author": "Giannis Chatziveroglou <[email protected]>",
"bugs": {
"url": "https://github.com/cardinal-labs/cardinal-stake-pool/issues",
"email": "[email protected]"
},
"homepage": "https://cardinal.so",
"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"
},
"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": {
"@cardinal/common": "^1.0.10",
"@cardinal/token-manager": "^1.2.0",
"@metaplex-foundation/mpl-token-metadata": "^1.2.5",
"node-fetch": "2"
},
"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.34.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/node-fetch": "^2.6.2",
"@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",
"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]"
}