forked from nostr-dev-kit/ndk-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 821 Bytes
/
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
{
"name": "@nostr-dev-kit/ndk-svelte",
"version": "0.8.17",
"description": "This package provides convenience functionalities to make usage of NDK with Svelte nicer.",
"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"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nostr",
"nostr-dev-kit",
"ndk",
"svelte"
],
"author": "pablof7z",
"license": "MIT",
"dependencies": {
"@nostr-dev-kit/ndk": "^0.8.17",
"svelte": "^4.1.2",
"typescript": "^5.1.6"
},
"devDependencies": {
"tsup": "^7.2.0"
}
}