63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "nostr-tools",
|
|
"version": "1.14.2",
|
|
"description": "Tools for making a Nostr client.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nbd-wtf/nostr-tools.git"
|
|
},
|
|
"files": [
|
|
"./lib/**/*"
|
|
],
|
|
"types": "./lib/index.d.ts",
|
|
"main": "lib/nostr.cjs.js",
|
|
"module": "lib/esm/nostr.mjs",
|
|
"exports": {
|
|
"import": "./lib/esm/nostr.mjs",
|
|
"require": "./lib/nostr.cjs.js",
|
|
"types": "./lib/index.d.ts"
|
|
},
|
|
"license": "Unlicense",
|
|
"dependencies": {
|
|
"@noble/ciphers": "^0.2.0",
|
|
"@noble/curves": "1.1.0",
|
|
"@noble/hashes": "1.3.1",
|
|
"@scure/base": "1.1.1",
|
|
"@scure/bip32": "1.3.1",
|
|
"@scure/bip39": "1.2.1"
|
|
},
|
|
"keywords": [
|
|
"decentralization",
|
|
"social",
|
|
"censorship-resistance",
|
|
"client",
|
|
"nostr"
|
|
],
|
|
"scripts": {
|
|
"build": "node build",
|
|
"format": "prettier --plugin-search-dir . --write .",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^18.13.0",
|
|
"@types/node-fetch": "^2.6.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"esbuild": "0.16.9",
|
|
"esbuild-plugin-alias": "^0.2.1",
|
|
"eslint": "^8.40.0",
|
|
"eslint-plugin-babel": "^5.3.1",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"esm-loader-typescript": "^1.0.3",
|
|
"events": "^3.3.0",
|
|
"jest": "^29.5.0",
|
|
"node-fetch": "^2.6.9",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.0",
|
|
"tsd": "^0.22.0",
|
|
"typescript": "^5.0.4",
|
|
"websocket-polyfill": "^0.0.3"
|
|
}
|
|
}
|