forked from nostr-dev-kit/ndk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "@nostr-dev-kit/ndk-svelte",
"version": "2.2.3",
"description": "This package provides convenience functionalities to make usage of NDK with Svelte nicer.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup --watch src src/index.ts --format cjs,esm --dts",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"keywords": [
"nostr",
"nostr-dev-kit",
"ndk",
"svelte"
],
"author": "pablof7z",
"license": "MIT",
"dependencies": {
"@nostr-dev-kit/ndk": "workspace:*",
"svelte": "^4.2.1"
},
"devDependencies": {
"@nostr-dev-kit/eslint-config-custom": "workspace:*",
"@nostr-dev-kit/tsconfig": "workspace:*",
"tsup": "^7.2.0"
}
}