-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.41 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
{
"name": "aftermath-ts-sdk",
"version": "1.2.44",
"description": "Aftermath TypeScript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AftermathFinance/aftermath-ts-sdk.git"
},
"keywords": [
"aftermath",
"aftermath finance",
"sui",
"aftermath sdk",
"aftermath finance sdk",
"aftermath typescript sdk",
"aftermath finance typescript sdk"
],
"author": "Aftermath",
"license": "Apache-2.0",
"files": [
"dist/*"
],
"bugs": {
"url": "https://github.com/AftermathFinance/aftermath-ts-sdk/issues"
},
"homepage": "https://github.com/AftermathFinance/aftermath-ts-sdk#readme",
"dependencies": {
"@pythnetwork/pyth-sui-js": "^1.2.3",
"bn.js": "^5.2.1",
"dayjs": "^1.11.7",
"i": "^0.3.7",
"node-fetch": "^3.3.1",
"npm": "^9.6.2",
"priority-queue-typescript": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typescript": "^5.1.6",
"yaml": "^2.3.1"
},
"peerDependencies": {
"@mysten/sui": "^1.12.0",
"@mysten/sui.js": "^0.54.1"
},
"prettier": {
"tabWidth": 4,
"useTabs": true
}
}