OpChan/packages/core/package.json
2025-09-18 11:08:42 +05:30

54 lines
1.4 KiB
JSON

{
"name": "@opchan/core",
"version": "1.0.0",
"description": "Core browser library for opchan",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module esnext --outDir dist/esm && cp -r dist/esm/* dist/ && mv dist/index.js dist/index.esm.js",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"dev": "tsc --watch",
"test": "vitest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
},
"keywords": [
"browser",
"library",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@noble/ed25519": "^2.2.3",
"@noble/hashes": "^1.8.0",
"@reown/appkit": "^1.7.17",
"@reown/appkit-adapter-bitcoin": "^1.7.17",
"@reown/appkit-adapter-wagmi": "^1.7.17",
"@reown/appkit-common": "^1.7.17",
"@reown/appkit-controllers": "^1.7.17",
"@waku/sdk": "^0.0.35-67a7287.0",
"clsx": "^2.1.1",
"ordiscan": "^1.3.0",
"tailwind-merge": "^2.5.2",
"uuid": "^11.1.0",
"wagmi": "^2.16.1"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/uuid": "^10.0.0",
"typescript": "^5.5.3",
"vitest": "^3.2.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}