-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
91
92
93
{
"name": "@solana/spl-stake-pool",
"version": "1.0.2",
"description": "SPL Stake Pool Program JS API",
"scripts": {
"build": "tsc && cross-env NODE_ENV=production rollup -c",
"build:program": "cargo build-sbf --manifest-path=../program/Cargo.toml",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix",
"test": "jest",
"clean": "rimraf ./dist"
},
"keywords": [],
"contributors": [
"Solana Labs Maintainers <[email protected]>",
"Lieu Zheng Hong",
"mFactory Team (https://mfactory.ch/)",
"SolBlaze <[email protected]> (https://solblaze.org/)"
],
"homepage": "https://solana.com",
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/solana-program-library"
},
"publishConfig": {
"access": "public"
},
"browser": {
"./dist/index.cjs.js": "./dist/index.browser.cjs.js",
"./dist/index.esm.js": "./dist/index.browser.esm.js"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"files": [
"/dist",
"/src"
],
"license": "ISC",
"dependencies": {
"@coral-xyz/borsh": "^0.29.0",
"@solana/spl-token": "^0.3.10",
"@solana/web3.js": "^1.87.6",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"buffer-layout": "^1.2.2",
"superstruct": "^1.0.3"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-multi-entry": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.0",
"@types/bn.js": "^5.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/node-fetch": "^2.6.10",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.0.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.0",
"rollup": "^4.9.2",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.0.0",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"testEnvironment": "node"
}
}