mirror of
https://github.com/aljazceru/pubky-core.git
synced 2025-12-31 12:54:35 +01:00
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "@synonymdev/pubky",
|
|
"type": "module",
|
|
"description": "Pubky client",
|
|
"version": "0.4.0-rc1",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pubky/pubky-core.git"
|
|
},
|
|
"scripts": {
|
|
"testnet": "cargo run -p pubky-homeserver -- --testnet",
|
|
"test": "npm run test-nodejs && npm run test-browser",
|
|
"test-nodejs": "tape test/*.js -cov",
|
|
"test-browser": "browserify test/*.js -p esmify | npx tape-run",
|
|
"build": "cargo run --bin bundle_pubky_npm",
|
|
"prepublishOnly": "npm run build && npm run test"
|
|
},
|
|
"files": [
|
|
"index.cjs",
|
|
"index.js",
|
|
"pubky.d.ts",
|
|
"pubky_bg.wasm"
|
|
],
|
|
"main": "index.cjs",
|
|
"browser": "index.js",
|
|
"types": "pubky.d.ts",
|
|
"keywords": [
|
|
"web",
|
|
"dht",
|
|
"dns",
|
|
"decentralized",
|
|
"identity"
|
|
],
|
|
"devDependencies": {
|
|
"browser-resolve": "^2.0.0",
|
|
"esmify": "^2.1.1",
|
|
"tape": "^5.8.1",
|
|
"tape-run": "^11.0.0"
|
|
},
|
|
"dependencies": {
|
|
"fetch-cookie": "^3.0.1"
|
|
}
|
|
}
|