|
| 1 | +{ |
| 2 | + "name": "@solana/rpc-core", |
| 3 | + "version": "0.0.0-development", |
| 4 | + "description": "A library for making calls to the Solana JSON RPC API", |
| 5 | + "exports": { |
| 6 | + "browser": { |
| 7 | + "import": "./dist/index.browser.js", |
| 8 | + "require": "./dist/index.browser.cjs" |
| 9 | + }, |
| 10 | + "node": { |
| 11 | + "import": "./dist/index.node.js", |
| 12 | + "require": "./dist/index.node.cjs" |
| 13 | + }, |
| 14 | + "react-native": "./dist/index.native.js", |
| 15 | + "types": "./dist/types/index.d.ts" |
| 16 | + }, |
| 17 | + "browser": { |
| 18 | + "./dist/index.node.cjs": "./dist/index.browser.cjs", |
| 19 | + "./dist/index.node.js": "./dist/index.browser.js" |
| 20 | + }, |
| 21 | + "main": "./dist/index.node.cjs", |
| 22 | + "module": "./dist/index.node.js", |
| 23 | + "react-native": "./dist/index.native.js", |
| 24 | + "types": "./dist/types/index.d.ts", |
| 25 | + "type": "module", |
| 26 | + "files": [ |
| 27 | + "./dist/" |
| 28 | + ], |
| 29 | + "sideEffects": false, |
| 30 | + "keywords": [ |
| 31 | + "blockchain", |
| 32 | + "solana", |
| 33 | + "web3" |
| 34 | + ], |
| 35 | + "scripts": { |
| 36 | + "compile:js": "tsup --config build-scripts/tsup.config.package.ts", |
| 37 | + "compile:typedefs": "tsc -p ./tsconfig.declarations.json", |
| 38 | + "dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch", |
| 39 | + "test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent", |
| 40 | + "test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent", |
| 41 | + "test:treeshakability:browser": "agadoo dist/index.browser.js", |
| 42 | + "test:treeshakability:native": "agadoo dist/index.node.js", |
| 43 | + "test:treeshakability:node": "agadoo dist/index.native.js", |
| 44 | + "test:typecheck": "tsc --noEmit", |
| 45 | + "test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent", |
| 46 | + "test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent" |
| 47 | + }, |
| 48 | + "author": "Solana Labs Maintainers <[email protected]>", |
| 49 | + "license": "MIT", |
| 50 | + "repository": { |
| 51 | + "type": "git", |
| 52 | + "url": "https://github.com/solana-labs/solana-web3.js" |
| 53 | + }, |
| 54 | + "bugs": { |
| 55 | + "url": "https://github.com/solana-labs/solana-web3.js/issues" |
| 56 | + }, |
| 57 | + "browserslist": [ |
| 58 | + "supports bigint and not dead", |
| 59 | + "maintained node versions" |
| 60 | + ], |
| 61 | + "dependencies": { |
| 62 | + "@solana/keys": "workspace:*", |
| 63 | + "@solana/rpc-transport": "workspace:*" |
| 64 | + }, |
| 65 | + "devDependencies": { |
| 66 | + "@solana/eslint-config-solana": "^0.0.4", |
| 67 | + "@swc/core": "^1.3.18", |
| 68 | + "@swc/jest": "^0.2.23", |
| 69 | + "@types/jest": "^29.2.3", |
| 70 | + "@typescript-eslint/eslint-plugin": "^5.43.0", |
| 71 | + "@typescript-eslint/parser": "^5.43.0", |
| 72 | + "agadoo": "^2.0.0", |
| 73 | + "build-scripts": "workspace:*", |
| 74 | + "eslint": "^8.27.0", |
| 75 | + "eslint-plugin-jest": "^27.1.5", |
| 76 | + "eslint-plugin-react-hooks": "^4.6.0", |
| 77 | + "eslint-plugin-sort-keys-fix": "^1.1.2", |
| 78 | + "jest": "^29.3.1", |
| 79 | + "jest-environment-jsdom": "^29.3.1", |
| 80 | + "jest-runner-eslint": "^1.1.0", |
| 81 | + "jest-runner-prettier": "^1.0.0", |
| 82 | + "postcss": "^8.4.12", |
| 83 | + "prettier": "^2.7.1", |
| 84 | + "test-config": "workspace:*", |
| 85 | + "ts-node": "^10.9.1", |
| 86 | + "tsconfig": "workspace:*", |
| 87 | + "tsup": "6.5.0", |
| 88 | + "turbo": "^1.6.3", |
| 89 | + "typescript": "^4.9" |
| 90 | + }, |
| 91 | + "bundlewatch": { |
| 92 | + "defaultCompression": "gzip", |
| 93 | + "files": [ |
| 94 | + { |
| 95 | + "path": "./dist/index*.js" |
| 96 | + } |
| 97 | + ] |
| 98 | + } |
| 99 | +} |
0 commit comments