Files
pubky-core/js/pubky/package.json
2024-07-24 18:02:41 +03:00

52 lines
1.3 KiB
JSON

{
"name": "@synonymdev/pubky",
"version": "0.1.0",
"description": "Pubky client library",
"type": "module",
"main": "src/index.js",
"types": "types/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/slashtags/skunk-works.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf types",
"lint": "standard --fix",
"test": "brittle test/*.js -cov",
"depcheck": "npx depcheck --ignore-dirs=test",
"fullcheck": "npm run lint && npm run clean && npm run build && npm run test && npm run depcheck",
"prepublishOnly": "npm run fullcheck"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pubky/pubky/issues"
},
"homepage": "https://github.com/pubky/pubky/tree/master/js/pubky/#readme",
"files": [
"src",
"types",
"!**/*.tsbuildinfo"
],
"dependencies": {
"blake3-wasm": "^3.0.0",
"crockford-base32": "^2.0.0",
"eventsource": "^2.0.2",
"hash-wasm": "^4.11.0",
"node-fetch-cache": "^4.1.2",
"pkarr": "^1.4.1",
"z32": "^1.1.0"
},
"browser": {
"./src/lib/fetch.js": "./src/lib/fetch-browser.js"
},
"devDependencies": {
"standard": "^17.1.0",
"typescript": "^5.5.4"
},
"overrides": {
"blake3-wasm@2.1.7": "^3.0.0",
"@c4312/blake3-internal": "^3.0.0"
}
}