-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nostr-relaypool",
"version": "0.6.30",
"description": "A Nostr RelayPool implementation in TypeScript using only nostr-tools library as a dependency.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/adamritter/nostr-relaypool-ts.git"
},
"main": "lib/nostr-relaypool.cjs",
"module": "lib/nostr-relaypool.esm.js",
"exports": {
"import": "./lib/nostr-relaypool.esm.js",
"require": "./lib/nostr-relaypool.cjs"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"nostr-tools": "^1.17.0",
"safe-stable-stringify": "^2.4.2"
},
"keywords": [
"decentralization",
"social",
"censorship-resistance",
"client",
"nostr"
],
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@jest/source-map": "^29.4.3",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@scure/base": "^1.1.1",
"@scure/bip32": "^1.1.1",
"@scure/bip39": "^1.1.0",
"@types/jest": "^29.2.5",
"@types/node": "^20.9.2",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "0.19.6",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-babel": "^5.3.1",
"esm-loader-import-relative-extension": "^1.0.8",
"esm-loader-typescript": "^1.0.3",
"events": "^3.3.0",
"jest": "^29.3.1",
"node-esm-loader": "^0.2.5",
"node-fetch": "3.3.2",
"prettier": "3.1.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsd": "^0.29.0",
"typescript": "^5.2.2",
"ws": "^8.12.0"
},
"scripts": {
"build": "node build.js",
"pretest": "node build.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"publish": "yarn install && npm run build && npm run test -- --testTimeout 5000 && npm publish",
"type-check": "tsc"
}
}