Skip to content

Commit 83c8861

Browse files
authored
Merge pull request #378 from mrkvon/cache-dexie-fix-package-links
docs(cache-dexie): fix links in package.json
2 parents 86518da + b7d2df6 commit 83c8861

File tree

1 file changed

+65
-60
lines changed

1 file changed

+65
-60
lines changed

cache-dexie/package.json

Lines changed: 65 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,69 @@
11
{
2-
"name": "@nostr-dev-kit/cache-dexie",
3-
"version": "2.7.8-beta.71",
4-
"description": "NDK Dexie Cache Adapter",
5-
"license": "MIT",
6-
"docs": "typedoc",
7-
"bugs": {
8-
"url": "https://github.com/nostr-dev-kit/cache-dexie/issues"
9-
},
10-
"homepage": "https://github.com/nostr-dev-kit/cache-dexie#readme",
11-
"main": "./dist/index.js",
12-
"module": "./dist/index.mjs",
13-
"exports": {
14-
"import": {
15-
"types": "./dist/index.d.mts",
16-
"default": "./dist/index.mjs"
2+
"name": "@nostr-dev-kit/cache-dexie",
3+
"version": "2.7.8-beta.71",
4+
"description": "NDK Dexie Cache Adapter",
5+
"license": "MIT",
6+
"docs": "typedoc",
7+
"bugs": {
8+
"url": "https://github.com/nostr-dev-kit/ndk/issues"
179
},
18-
"require": {
19-
"types": "./dist/index.d.ts",
20-
"default": "./dist/index.js"
10+
"homepage": "https://github.com/nostr-dev-kit/ndk/tree/master/cache-dexie#readme",
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/nostr-dev-kit/ndk.git",
14+
"directory": "cache-dexie"
15+
},
16+
"main": "./dist/index.js",
17+
"module": "./dist/index.mjs",
18+
"exports": {
19+
"import": {
20+
"types": "./dist/index.d.mts",
21+
"default": "./dist/index.mjs"
22+
},
23+
"require": {
24+
"types": "./dist/index.d.ts",
25+
"default": "./dist/index.js"
26+
}
27+
},
28+
"files": [
29+
"dist",
30+
"README.md"
31+
],
32+
"scripts": {
33+
"dev": "bun run build --watch",
34+
"build": "tsup src/index.ts src/performance-test.ts --format cjs,esm --dts",
35+
"clean": "rm -rf dist",
36+
"lint": "prettier --check . && eslint .",
37+
"format": "prettier --write .",
38+
"test": "vitest",
39+
"perf-test": "bun run build && node dist/performance-test.js"
40+
},
41+
"keywords": [
42+
"nostr",
43+
"dexie",
44+
"cache"
45+
],
46+
"authors": [
47+
"pablof7z",
48+
"erskingardner"
49+
],
50+
"devDependencies": {
51+
"@types/debug": "^4.1.12",
52+
"@types/node": "^24.10.0",
53+
"fake-indexeddb": "^6.0.0",
54+
"prettier": "^3.3.3",
55+
"ts-node": "^10.9.2",
56+
"tsup": "^8.4.0",
57+
"typedoc": "^0.28.14",
58+
"typedoc-plugin-markdown": "^4.9.0",
59+
"vitest": "^4.0.14"
60+
},
61+
"dependencies": {
62+
"@nostr-dev-kit/ndk": "3.0.0-beta.71",
63+
"debug": "^4.3.7",
64+
"dexie": "^4.0.8",
65+
"nostr-tools": "^2.17.2",
66+
"typescript": "^5.9.3",
67+
"typescript-lru-cache": "^2.0.0"
2168
}
22-
},
23-
"files": [
24-
"dist",
25-
"README.md"
26-
],
27-
"scripts": {
28-
"dev": "bun run build --watch",
29-
"build": "tsup src/index.ts src/performance-test.ts --format cjs,esm --dts",
30-
"clean": "rm -rf dist",
31-
"lint": "prettier --check . && eslint .",
32-
"format": "prettier --write .",
33-
"test": "vitest",
34-
"perf-test": "bun run build && node dist/performance-test.js"
35-
},
36-
"keywords": [
37-
"nostr",
38-
"dexie",
39-
"cache"
40-
],
41-
"authors": [
42-
"pablof7z",
43-
"erskingardner"
44-
],
45-
"devDependencies": {
46-
"@types/debug": "^4.1.12",
47-
"@types/node": "^24.10.0",
48-
"fake-indexeddb": "^6.0.0",
49-
"prettier": "^3.3.3",
50-
"ts-node": "^10.9.2",
51-
"tsup": "^8.4.0",
52-
"typedoc": "^0.28.14",
53-
"typedoc-plugin-markdown": "^4.9.0",
54-
"vitest": "^4.0.14"
55-
},
56-
"dependencies": {
57-
"@nostr-dev-kit/ndk": "3.0.0-beta.71",
58-
"debug": "^4.3.7",
59-
"dexie": "^4.0.8",
60-
"nostr-tools": "^2.17.2",
61-
"typescript": "^5.9.3",
62-
"typescript-lru-cache": "^2.0.0"
63-
}
6469
}

0 commit comments

Comments
 (0)