-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "@cykura/staker",
"scripts": {
"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",
"build": "yarn prettier && tsdx build",
"prettier": "prettier --write ./src/*"
},
"files": [
"dist/",
"src/"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": "https://github.com/cykura/liquidity-mining.git",
"dependencies": {
"@cykura/sdk": "^0.1.26",
"@cykura/sdk-core": "^0.1.7",
"@gokiprotocol/client": "0.10.4",
"@project-serum/anchor": "^0.23.0",
"@saberhq/anchor-contrib": "1.13.29",
"@saberhq/chai-solana": "1.13.29",
"@saberhq/solana-contrib": "1.13.29",
"@saberhq/token-utils": "1.13.29",
"@solana/spl-token": "^0.1.8",
"@tribecahq/tribeca-sdk": "0.5.7",
"jsbi": "4.1.0",
"tiny-invariant": "^1.2.0",
"@solana/web3.js": "^1.42"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"chai": "4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^8.0.0",
"tsdx": "^0.14.1",
"typescript": "^4.3.5"
},
"license": "AGPL-3.0-only"
}