-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@nostr-dev-kit/ndk-cache-dexie",
"version": "0.8.16-1",
"description": "NDK Dexie Cache Adapter",
"license": "MIT",
"bugs": {
"url": "https://github.com/nostr-dev-kit/ndk-cache-dexie/issues"
},
"homepage": "https://github.com/nostr-dev-kit/ndk-cache-dexie#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"packageManager": "pnpm@8.6.12",
"scripts": {
"dev": "pnpm build --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"prettify": "prettier . --write --config .prettierrc"
},
"keywords": [
"nostr",
"dexie",
"cache"
],
"authors": [
"pablof7z",
"erskingardner"
],
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/debug": "^4.1.8",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@nostr-dev-kit/ndk": "^0.8.16",
"debug": "^4.3.4",
"dexie": "^3.2.4",
"nostr-tools": "^1.14.0"
}
}