-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 KB
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
{
"name": "@solana/spl-token-lending",
"version": "0.3.10",
"description": "SPL Token Lending JavaScript API",
"license": "MIT",
"author": "Solana Labs Maintainers <maintainers@solanalabs.com>",
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/solana-program-library"
},
"bugs": {
"url": "https://github.com/solana-labs/solana-program-library/issues"
},
"keywords": [],
"publishConfig": {
"access": "public"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/src/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib/*",
"clean:docs": "rm -rf docs/*",
"build": "tsc && rollup --configPlugin @rollup/plugin-typescript -c && rm lib/rollup.config.d.ts",
"deploy": "npm docs && gh-pages -d docs -e token-lending",
"docs": "typedoc",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@solana/buffer-layout": "^4.0.0",
"@solana/buffer-layout-utils": "^0.2.0",
"bigint-buffer": "^1.1.5",
"bignumber.js": "^9.0.1"
},
"peerDependencies": {
"@solana/spl-token": "0.4.9",
"@solana/web3.js": "^1.20.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@solana/spl-token": "0.4.9",
"@solana/web3.js": "^1.95.5",
"@types/eslint": "^8.56.7",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"gh-pages": "^6.3.0",
"rollup": "^4.30.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
}
}