package.json raw
1 {
2 "name": "@orly/directory-client",
3 "version": "0.1.0",
4 "description": "TypeScript client library for Nostr Distributed Directory Consensus Protocol",
5 "type": "module",
6 "main": "./dist/index.js",
7 "types": "./dist/index.d.ts",
8 "exports": {
9 ".": {
10 "types": "./dist/index.d.ts",
11 "import": "./dist/index.js"
12 }
13 },
14 "scripts": {
15 "build": "tsc",
16 "dev": "tsc --watch",
17 "test": "vitest",
18 "lint": "eslint src/**/*.ts"
19 },
20 "keywords": [
21 "nostr",
22 "directory",
23 "consensus",
24 "relay",
25 "identity",
26 "delegation"
27 ],
28 "author": "",
29 "license": "MIT",
30 "dependencies": {
31 "applesauce-core": "^3.0.0",
32 "rxjs": "^7.8.1"
33 },
34 "devDependencies": {
35 "@types/node": "^20.0.0",
36 "typescript": "^5.3.0",
37 "vitest": "^1.0.0"
38 },
39 "peerDependencies": {
40 "applesauce-core": "^3.0.0"
41 }
42 }
43
44