-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "zapthreads",
"type": "module",
"version": "0.5.2",
"description": "Threaded comments on Nostr",
"repository": {
"type": "git",
"url": "https://github.com/fr4nzap/zapthreads.git"
},
"files": [
"dist"
],
"types": "./dist/zapthreads.d.ts",
"module": "./dist/zapthreads.js",
"main": "./dist/zapthreads.umd.cjs",
"exports": {
".": {
"import": "./dist/zapthreads.js",
"require": "./dist/zapthreads.umd.cjs"
}
},
"scripts": {
"dev": "vite --config vite-app.config.js",
"build-app": "vite build --config vite-app.config.js",
"build": "vite build",
"publish-lib": "vite build && npm publish",
"test": "jest"
},
"license": "Unlicense",
"devDependencies": {
"@thisbeyond/solid-select": "^0.14.0",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"solid-devtools": "^0.27.0",
"terser": "^5.19.3",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2",
"vite": "^4.1.1",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-externalize-deps": "^0.6.0",
"vite-plugin-solid": "^2.5.0"
},
"dependencies": {
"@solid-primitives/autofocus": "^0.0.107",
"@solid-primitives/resize-observer": "^2.0.21",
"@solid-primitives/scheduled": "^1.3.2",
"fast-deep-equal": "^3.1.3",
"idb": "^7.1.1",
"light-bolt11-decoder": "^3.0.0",
"nano-markdown": "^1.2.2",
"nostr-tools": "^2.4.0",
"solid-element": "^1.7.1",
"solid-js": "^1.8.5"
}
}