-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "react-nocomment",
"version": "0.3.0",
"description": "This is an embeddable Nostr comments widget that just works",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"build": "node build.js",
"embeddable-debug": "esbuild --bundle embeddable/embed.jsx --outfile=embeddable/embed.js --sourcemap",
"embeddable": "esbuild --bundle embeddable/embed.jsx --outfile=embeddable/embed.js --minify"
},
"author": [
"fiatjaf",
"saiy2k"
],
"license": "MIT",
"repository": "https://github.com/fiatjaf/nocomment",
"dependencies": {
"@noble/hashes": "^1.5.0",
"dayjs": "^1.11.6",
"esbuild": "^0.17.0",
"nostr-tools": "^2.10.1",
"react": "^18.2.0",
"react-dom": "^18.1.0",
"styled-components": "^5.3.6",
"use-debounce": "^8.0.4"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"files": [
"lib"
]
}