You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
867 B
43 lines
867 B
{ |
|
"name": "@orly/directory-client", |
|
"version": "0.1.0", |
|
"description": "TypeScript client library for Nostr Distributed Directory Consensus Protocol", |
|
"type": "module", |
|
"main": "./dist/index.js", |
|
"types": "./dist/index.d.ts", |
|
"exports": { |
|
".": { |
|
"types": "./dist/index.d.ts", |
|
"import": "./dist/index.js" |
|
} |
|
}, |
|
"scripts": { |
|
"build": "tsc", |
|
"dev": "tsc --watch", |
|
"test": "vitest", |
|
"lint": "eslint src/**/*.ts" |
|
}, |
|
"keywords": [ |
|
"nostr", |
|
"directory", |
|
"consensus", |
|
"relay", |
|
"identity", |
|
"delegation" |
|
], |
|
"author": "", |
|
"license": "MIT", |
|
"dependencies": { |
|
"applesauce-core": "^3.0.0", |
|
"rxjs": "^7.8.1" |
|
}, |
|
"devDependencies": { |
|
"@types/node": "^20.0.0", |
|
"typescript": "^5.3.0", |
|
"vitest": "^1.0.0" |
|
}, |
|
"peerDependencies": { |
|
"applesauce-core": "^3.0.0" |
|
} |
|
} |
|
|
|
|