anchor/ts/package.json

84 lines
2.5 KiB
JSON
Raw Normal View History

2020-12-31 17:54:51 -08:00
{
2021-01-04 18:29:16 -08:00
"name": "@project-serum/anchor",
2022-04-13 16:44:18 -07:00
"version": "0.24.2",
2020-12-31 17:54:51 -08:00
"description": "Anchor client",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"browser": "./dist/browser/index.js",
2021-01-04 18:29:16 -08:00
"license": "(MIT OR Apache-2.0)",
2021-09-16 13:42:11 -07:00
"types": "dist/cjs/index.d.ts",
2021-10-21 19:37:18 -07:00
"homepage": "https://github.com/project-serum/anchor#readme",
"bugs": {
"url": "https://github.com/project-serum/anchor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/project-serum/anchor.git"
},
2020-12-31 17:54:51 -08:00
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=11"
2020-12-31 17:54:51 -08:00
},
"scripts": {
"build": "rimraf dist/ && yarn build:node && yarn build:browser",
2020-12-31 17:54:51 -08:00
"build:node": "tsc && tsc -p tsconfig.cjs.json",
"build:browser": "rollup --config",
2021-07-17 17:56:42 -07:00
"lint:fix": "prettier src/** tests/** -w",
"lint": "prettier src/** tests/** --check",
"watch": "tsc -p tsconfig.cjs.json --watch",
2021-05-10 13:12:20 -07:00
"prepublishOnly": "yarn build",
"docs": "typedoc --excludePrivate --includeVersion --out ../docs/src/.vuepress/dist/ts/ --readme none src/index.ts",
"test": "jest tests --detectOpenHandles"
2020-12-31 17:54:51 -08:00
},
"dependencies": {
2022-02-17 11:23:21 -08:00
"@project-serum/borsh": "^0.2.5",
"@solana/web3.js": "^1.36.0",
2021-03-24 20:19:29 -07:00
"base64-js": "^1.5.1",
2020-12-31 17:54:51 -08:00
"bn.js": "^5.1.2",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.2",
2021-01-02 22:40:17 -08:00
"camelcase": "^5.3.1",
2022-01-29 13:46:12 -08:00
"cross-fetch": "^3.1.5",
2021-02-07 07:45:10 -08:00
"crypto-hash": "^1.3.0",
"eventemitter3": "^4.0.7",
"js-sha256": "^0.9.0",
"pako": "^2.0.3",
"snake-case": "^3.0.4",
"superstruct": "^0.15.4",
"toml": "^3.0.0"
2020-12-31 17:54:51 -08:00
},
"devDependencies": {
2021-01-30 19:16:55 -08:00
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/crypto-hash": "^1.1.2",
"@types/jest": "^27.4.1",
"@types/pako": "^1.0.1",
2020-12-31 17:54:51 -08:00
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.0",
"jest": "27.3.1",
"jest-config": "27.3.1",
2020-12-31 17:54:51 -08:00
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.7",
"ts-jest-resolver": "^2.0.0",
2020-12-31 17:54:51 -08:00
"ts-node": "^9.0.0",
"tslib": "^2.3.1",
2022-03-20 20:51:28 -07:00
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
2020-12-31 17:54:51 -08:00
}
}