@nostrwatch/route66-wsadapter-nostrtools 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/browser/index.js +1788 -0
- package/dist/browser/index.js.map +7 -0
- package/dist/node/index.js +1811 -0
- package/dist/node/index.js.map +7 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nostrwatch/route66-wsadapter-nostrtools",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "nostr-tools websocket adapter for @nostrwatch/route66",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"author": "bread@sandwich.farm",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"nostr",
|
|
10
|
+
"NIP-66",
|
|
11
|
+
"adapter",
|
|
12
|
+
"cache",
|
|
13
|
+
"LocalStorage"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/browser/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
|
|
25
|
+
"@esbuild-plugins/node-modules-polyfill": "0.2.2",
|
|
26
|
+
"@jgoz/esbuild-plugin-livereload": "^2.1.1",
|
|
27
|
+
"@rollup/plugin-commonjs": "28.0.0",
|
|
28
|
+
"@rollup/plugin-node-resolve": "15.3.0",
|
|
29
|
+
"@rollup/plugin-replace": "6.0.1",
|
|
30
|
+
"@rollup/plugin-terser": "0.4.4",
|
|
31
|
+
"@surma/rollup-plugin-off-main-thread": "2.2.3",
|
|
32
|
+
"@types/jwt-encode": "1.0.3",
|
|
33
|
+
"esbuild": "^0.25.0",
|
|
34
|
+
"esbuild-plugin-alias": "0.2.1",
|
|
35
|
+
"esbuild-plugin-clean": "1.0.1",
|
|
36
|
+
"esbuild-plugin-inline-worker": "0.1.1",
|
|
37
|
+
"esbuild-plugin-polyfill-node": "0.3.0",
|
|
38
|
+
"esbuild-plugin-tsc": "^0.4.0",
|
|
39
|
+
"eslint": "^8.46.0",
|
|
40
|
+
"jest": "^29.6.1",
|
|
41
|
+
"prettier": "^3.4.2",
|
|
42
|
+
"rollup": "^4.27.4",
|
|
43
|
+
"rollup-plugin-copy": "3.5.0",
|
|
44
|
+
"rollup-plugin-livereload": "2.0.5",
|
|
45
|
+
"rollup-plugin-node-polyfills": "0.2.1",
|
|
46
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
47
|
+
"rollup-plugin-terser": "7.0.2",
|
|
48
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
49
|
+
"rollup-plugin-visualizer": "5.12.0",
|
|
50
|
+
"rollup-plugin-web-worker-loader": "1.6.1",
|
|
51
|
+
"typescript": "^5.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@noble/ciphers": "1.0.0",
|
|
55
|
+
"@noble/curves": "1.6.0",
|
|
56
|
+
"@noble/hashes": "1.5.0",
|
|
57
|
+
"@nostr-fetch/adapter-nostr-tools-v2": "^0.17.0",
|
|
58
|
+
"browser-dtector": "^4.1.0",
|
|
59
|
+
"nostr-fetch": "^0.17.0",
|
|
60
|
+
"nostr-tools": "^2.7.2",
|
|
61
|
+
"@nostrwatch/route66": "^0.0.1"
|
|
62
|
+
},
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "git+https://github.com/sandwichfarm/nostrwatch.git"
|
|
66
|
+
},
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/sandwichfarm/nostrwatch/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/sandwichfarm/nostr-watch/tree/next/libraries/route66/adapters/cache/DexieAdapter/#readme",
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "pnpm run clean && node build.js",
|
|
73
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
74
|
+
"dev": "node build.js --watch",
|
|
75
|
+
"clean": "rm -rf dist",
|
|
76
|
+
"clean:source": "find src -name \"*.d.ts\" -type f -delete && find src -name \"*.d.ts.map\" -type f -delete",
|
|
77
|
+
"test": "jest"
|
|
78
|
+
}
|
|
79
|
+
}
|