99 lines
3.5 KiB
JSON
99 lines
3.5 KiB
JSON
{
|
|
"name": "@solana/web3.js-experimental",
|
|
"version": "0.0.0-development",
|
|
"description": "Solana Javascript API",
|
|
"exports": {
|
|
"browser": {
|
|
"import": "./dist/index.browser.js",
|
|
"require": "./dist/index.browser.cjs"
|
|
},
|
|
"node": {
|
|
"import": "./dist/index.node.js",
|
|
"require": "./dist/index.node.cjs"
|
|
},
|
|
"react-native": "./dist/index.native.js",
|
|
"types": "./dist/types/index.d.ts"
|
|
},
|
|
"browser": {
|
|
"./dist/index.node.cjs": "./dist/index.browser.cjs",
|
|
"./dist/index.node.js": "./dist/index.browser.js"
|
|
},
|
|
"jsdelivr": "./dist/index.production.min.js",
|
|
"umd": "./dist/index.production.min.js",
|
|
"unpkg": "./dist/index.production.min.js",
|
|
"main": "./dist/index.node.cjs",
|
|
"module": "./dist/index.node.js",
|
|
"react-native": "./dist/index.native.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"./dist/"
|
|
],
|
|
"sideEffects": false,
|
|
"keywords": [
|
|
"blockchain",
|
|
"solana",
|
|
"web3"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run compile:js compile:typedefs test:lint test:prettier test:typecheck test:unit:browser test:unit:node test:treeshakability:browser test:treeshakability:native test:treeshakability:node",
|
|
"compile:js": "tsup",
|
|
"compile:typedefs": "tsc -p ./tsconfig.declarations.json",
|
|
"dev": "jest -c ./internal/jest/jest-dev.config.ts --watch",
|
|
"test:lint": "jest -c ./internal/jest/jest-lint.config.ts --silent",
|
|
"test:prettier": "jest -c ./internal/jest/jest-prettier.config.ts --silent",
|
|
"test:typecheck": "tsc --noEmit",
|
|
"test:unit:browser": "jest -c ./internal/jest/jest-unit.config.browser.ts --silent",
|
|
"test:unit:node": "jest -c ./internal/jest/jest-unit.config.node.ts --silent",
|
|
"test:treeshakability:browser": "agadoo dist/index.browser.js",
|
|
"test:treeshakability:native": "agadoo dist/index.node.js",
|
|
"test:treeshakability:node": "agadoo dist/index.native.js"
|
|
},
|
|
"author": "Solana Maintainers <maintainers@solana.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/solana-labs/solana-web3.js"
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/solana-labs/solana-web3.js/issues"
|
|
},
|
|
"browserslist": [
|
|
"supports bigint and not dead",
|
|
"maintained node versions"
|
|
],
|
|
"devDependencies": {
|
|
"@solana/eslint-config-solana": "^0.0.4",
|
|
"@solana/prettier-config-solana": "0.0.1",
|
|
"@swc/core": "^1.3.18",
|
|
"@swc/jest": "^0.2.23",
|
|
"@types/jest": "^29.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
"@typescript-eslint/parser": "^5.43.0",
|
|
"agadoo": "^2.0.0",
|
|
"eslint": "^8.27.0",
|
|
"eslint-plugin-jest": "^27.1.5",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
"jest": "^29.3.1",
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
"jest-runner-eslint": "^1.1.0",
|
|
"jest-runner-prettier": "^1.0.0",
|
|
"postcss": "^8.4.12",
|
|
"prettier": "^2.7.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsup": "6.5.0",
|
|
"turbo": "^1.6.3",
|
|
"typescript": "~4.8"
|
|
},
|
|
"bundlewatch": {
|
|
"defaultCompression": "gzip",
|
|
"files": [
|
|
{
|
|
"path": "./dist/index*.js"
|
|
}
|
|
]
|
|
},
|
|
"prettier": "@solana/prettier-config-solana"
|
|
}
|