universal-portability
Version:
Universal Portability Framework for Web3 Applications
103 lines (102 loc) • 2.92 kB
JSON
{
"name": "universal-portability",
"version": "1.3.4",
"description": "Universal Portability Framework for Web3 Applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"react-native": "dist/react-native.js",
"files": [
"dist",
"dist/**/*"
],
"exports": {
".": {
"react-native": "./dist/react-native.js",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./native": {
"react-native": "./dist/native.js",
"import": "./dist/native.esm.js",
"require": "./dist/native.js",
"types": "./dist/native.d.ts"
},
"./dist/native": {
"import": "./dist/native.esm.js",
"require": "./dist/native.js",
"types": "./dist/native.d.ts"
},
"./dist/react-native": {
"import": "./dist/react-native.esm.js",
"require": "./dist/react-native.js",
"types": "./dist/react-native.d.ts"
}
},
"type":"module",
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run verify-dist && npm run verify-pack",
"verify-dist": "node scripts/verify-dist.cjs",
"verify-pack": "node scripts/verify-package-integrity.cjs",
"prepack": "npm run build",
"postpack": "echo 'Package created successfully. Run npm publish to publish.'",
"release": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"release:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
"version:beta": "npm version prerelease --preid=beta",
"publish:beta": "npm publish --tag beta"
},
"keywords": [
"web3",
"ethereum",
"portability",
"intersend"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-native": ">=0.63.0",
"react-native-webview": ">=11.0.0",
"wagmi": "^2.12.30"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
},
"react-native-webview": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-native": "^0.72.0",
"@types/react-native-webview": "^13.0.0",
"rollup": "^2.79.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@impersonator/iframe": "^0.1.1",
"viem": "^2.21.44"
}
}