93 lines
2.4 KiB
JSON
93 lines
2.4 KiB
JSON
{
|
|
"name": "@solana/spl-stake-pool",
|
|
"version": "0.6.5",
|
|
"description": "SPL Stake Pool Program JS API",
|
|
"scripts": {
|
|
"build": "npm run clean && tsc && cross-env NODE_ENV=production rollup -c",
|
|
"lint": "eslint --max-warnings 0 .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"clean": "rimraf ./dist"
|
|
},
|
|
"keywords": [],
|
|
"contributors": [
|
|
"Solana Labs Maintainers <maintainers@solanalabs.com>",
|
|
"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": {
|
|
"@project-serum/borsh": "^0.2.2",
|
|
"@solana/buffer-layout": "^4.0.0",
|
|
"@solana/spl-token": "^0.1.8",
|
|
"@solana/web3.js": "^1.30.2",
|
|
"bn.js": "^5.2.0",
|
|
"buffer": "^6.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-alias": "^5.0.0",
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
"@rollup/plugin-json": "^6.0.0",
|
|
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
"@rollup/plugin-typescript": "^11.1.0",
|
|
"@types/bn.js": "^5.1.0",
|
|
"@types/jest": "^27.4.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
"@typescript-eslint/parser": "^5.11.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.66.1",
|
|
"rollup-plugin-dts": "^4.1.0",
|
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^4.5.4"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": ".",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"testRegex": ".*\\.test\\.ts$",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|