-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "@port.finance/port-sdk",
"version": "0.2.69",
"license": "MIT",
"source": "src/index.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"test": "ts-node node_modules/jasmine/bin/jasmine",
"lint": "eslint \"src/**/*.ts\" --cache && eslint \"spec/**/*.ts\" --cache && prettier --write '{src,spec}/**/*.ts'",
"lint:ci": "eslint \"src/**/*.ts\" --max-warnings=0 && eslint \"spec/**/*.ts\" --max-warnings=0 && prettier -c '{src,spec}/**/*.ts'"
},
"keywords": [],
"author": "Port Finance <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/port-finance/port-sdk.git"
},
"bugs": {
"url": "https://github.com/port-finance/port-sdk/issues"
},
"homepage": "https://github.com/port-finance/port-sdk#readme",
"description": "Port SDK for interacting with Port Finance",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
],
"dependencies": {
"@project-serum/anchor": "^0.21.0",
"@saberhq/solana-contrib": "^1.12.53",
"@saberhq/token-utils": "^1.12.53",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.1107",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.1",
"buffer-layout": "1.2.2",
"jsbi": "^4.1.0",
"prettier": "^2.4.1",
"tiny-invariant": "^1.2.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/big.js": "^6.1.1",
"@types/jasmine": "^3.8.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jasmine": "^3.8.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.32.0",
"bn.js": "^5.2.0"
}
}