-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.22 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@quarryprotocol/gauge",
"version": "0.4.3",
"description": "The TypeScript SDK for Quarry Gauge.",
"keywords": [
"solana",
"tribeca",
"quarry",
"governance"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "[email protected]:QuarryProtocol/gauge.git",
"author": "Quarry Team <[email protected]>",
"bugs": {
"url": "https://github.com/QuarryProtocol/gauge/issues",
"email": "[email protected]"
},
"homepage": "https://quarry.so",
"license": "AGPL-3.0",
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"idl:generate": "./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh",
"idl:generate:nolint": "./scripts/parse-idls.sh && RUN_ESLINT=none ./scripts/generate-idl-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/ts/ src/index.ts",
"prepare": "husky install",
"cargo-readme": "cd programs/gauge/ && cargo readme > README.md && cd ../../ && rm README.md && cp programs/gauge/README.md README.md"
},
"devDependencies": {
"@gokiprotocol/client": "^0.10.4",
"@project-serum/anchor": "^0.24.2",
"@quarryprotocol/quarry-sdk": "^5.0.2",
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/anchor-contrib": "^1.13.27",
"@saberhq/chai-solana": "^1.13.27",
"@saberhq/eslint-config": "^1.13.27",
"@saberhq/solana-contrib": "^1.13.27",
"@saberhq/token-utils": "^1.13.27",
"@saberhq/tsconfig": "^1.13.27",
"@solana/web3.js": "^1.43.5",
"@tribecahq/tribeca-sdk": "^0.5.6",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.40",
"@types/prettier": "^2.6.3",
"@yarnpkg/doctor": "^4.0.0-rc.6",
"bn.js": "^5.2.1",
"chai": "=4.3.4",
"eslint": "^8.17.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jsbi": "^4.3.0",
"lint-staged": "^13.0.0",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
},
"peerDependencies": {
"@project-serum/anchor": ">=0.24",
"@quarryprotocol/quarry-sdk": "^5",
"@saberhq/anchor-contrib": "^1.13",
"@saberhq/solana-contrib": "^1.13",
"@saberhq/token-utils": "^1.13",
"@solana/web3.js": "^1.42",
"@tribecahq/tribeca-sdk": "^0.5.6",
"bn.js": "^5.2.0"
},
"resolutions": {
"@solana/web3.js": "^1.43",
"bn.js": "^5.2.0",
"@types/bn.js": "^5.1.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md}": "prettier --write"
},
"dependencies": {
"superstruct": "^0.15.4",
"tiny-invariant": "^1.2.0",
"tslib": "^2.4.0"
},
"packageManager": "[email protected]"
}