-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 2.39 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
{
"name": "@aldrin_exchange/sdk",
"version": "0.4.51",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"repository": "aldrin-exchange/aldrin-sdk",
"homepage": "https://dex.aldrin.com",
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "rm -rf dist && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "tsc -p config/tsconfig.cjs.json",
"build:esm": "tsc -p config/tsconfig.esm.json",
"build:umd": "webpack --config config/webpack.config.js",
"build:types": "tsc -p config/tsconfig.types.json",
"package": "npm run build && npm pack",
"test": "jest",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "eslint . --ext .ts --fix",
"prepare": "husky install",
"docs:watch": "typedoc --watch",
"docs": "typedoc"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"example",
"typescript",
"npm",
"package",
"sample",
"boilerplate",
"starter",
"demo",
"cjs",
"esm",
"umd"
],
"author": "Aldrin dev team <[email protected]>",
"license": "Apache",
"dependencies": {
"@orca-so/stablecurve": "^1.0.6",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "0.1.8",
"graphql": "^16.0.1",
"graphql-request": "^3.6.1",
"js-sha256": "^0.9.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.47.3",
"bn.js": "^5.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@project-serum/common": "0.0.1-beta.3",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"bs58": "^4.0.1",
"dts-gen": "^0.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.2.0",
"lint-staged": "^11.2.6",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typedoc": "^0.22.8",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"lint-staged": {
"**/*.ts": "yarn eslint"
}
}