-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.47 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.47 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
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.1.8",
"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",
"format": "prettier --check src test",
"format:fix": "prettier --write src test",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix",
"test": "jest",
"clean": "rimraf ./dist"
},
"keywords": [],
"contributors": [
"Anza Maintainers <maintainers@anza.xyz>",
"Lieu Zheng Hong",
"mFactory Team (https://mfactory.ch/)",
"SolBlaze <contact@solblaze.org> (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": {
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "0.4.14",
"@solana/web3.js": "^1.98.4",
"bn.js": "^5.2.2",
"buffer": "^6.0.3",
"buffer-layout": "^1.2.2",
"superstruct": "^2.0.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-multi-entry": "^7.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/bn.js": "^5.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.48.1",
"cross-env": "^10.0.0",
"eslint": "^8.57.1",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.4.1",
"typescript": "^6.0.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"testEnvironment": "node"
}
}