forked from saber-hq/saber-periphery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.67 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
{
"name": "@saberhq/saber-periphery",
"description": "TypeScript SDK for Saber Periphery",
"version": "1.1.3",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "https://github.com/saber-hq/saber-periphery.git",
"bugs": {
"url": "https://github.com/saber-hq/saber-periphery/issues",
"email": "team@saber.so"
},
"homepage": "https://saber.so",
"license": "AGPL-3.0",
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"clean": "rm -fr dist/",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"lint": "eslint .",
"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",
"test:e2e": "anchor test --skip-build tests/*.spec.ts",
"prepare": "husky install",
"typecheck": "tsc"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/anchor-contrib": "^1.13.28",
"@saberhq/chai-solana": "^1.13.28",
"@saberhq/eslint-config": "^1.13.28",
"@saberhq/solana-contrib": "^1.13.28",
"@saberhq/stableswap-sdk": "^1.13.28",
"@saberhq/token-utils": "^1.13.28",
"@saberhq/tsconfig": "^1.13.28",
"@solana/web3.js": "^1.44.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/eslint": "^8.4.3",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@yarnpkg/doctor": "^4.0.0-rc.9",
"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.1",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
},
"dependencies": {
"superstruct": "^0.16.0",
"tiny-invariant": "^1.2.0",
"tslib": "^2.4.0"
},
"resolutions": {
"@types/bn.js": "^5"
},
"peerDependencies": {
"@saberhq/anchor-contrib": "^1.13",
"@saberhq/solana-contrib": "^1.13",
"@saberhq/stableswap-sdk": "^1.13",
"@saberhq/token-utils": "^1.13",
"@solana/web3.js": "^1.44",
"bn.js": "^5"
},
"files": [
"dist/",
"src/"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --cache",
"*.{css,md,json,webmanifest,yml,yaml,js,jsx,html,yml,yaml}": "prettier --write"
},
"packageManager": "yarn@3.2.1"
}