forked from metamania01/cardinal-staking
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.27 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
{
"name": "@cardinal/staking",
"version": "2.4.0",
"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"
},
"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": "./generate-idls.sh",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ src/index.ts",
"test": "jest --setupFiles dotenv/config --detectOpenHandles",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"prepare": "husky install"
},
"dependencies": {
"@cardinal/common": "^7.2.3",
"@cardinal/payment-manager": "^2.1.1",
"@cardinal/rewards-center": "^2.4.0",
"@cardinal/token-manager": "^4.3.2",
"@coral-xyz/anchor": "0.27.0",
"@metaplex-foundation/mpl-token-auth-rules": "^1.1.0",
"@metaplex-foundation/mpl-token-metadata": "^2.11.0",
"@solana/spl-token": "^0.3.6",
"@solana/web3.js": "^1.34.0"
},
"devDependencies": {
"@msgpack/msgpack": "^2.8.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/jest": "^29.2.0",
"@types/node-fetch": "^2.6.2",
"@types/prettier": "^2.4.3",
"bn.js": "^5.2.0",
"eslint": "^8.26.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",
"husky": "^7.0.0",
"jest": "^29.2.1",
"jest-junit": "^15.0.0",
"jsbi": "^4.1.0",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}