-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.57 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
57
58
59
60
61
62
{
"name": "bluesky-comments",
"version": "0.8.0",
"description": "Embed Bluesky comments on your website",
"main": "./dist/bluesky-comments.umd.js",
"module": "./dist/bluesky-comments.es.js",
"files": [
"dist",
"dist/components"
],
"scripts": {
"build": "vite build && vite build --config vite.components.config.js",
"watch": "vite build --watch & vite build --watch --config vite.components.config.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"bluesky",
"comments",
"atproto",
"react",
"social"
],
"author": "Cory Zue",
"license": "MIT",
"dependencies": {
"@atproto/api": "^0.13.18",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.11"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/czue/bluesky-comments.git"
},
"bugs": {
"url": "https://github.com/czue/bluesky-comments/issues"
},
"homepage": "https://github.com/czue/bluesky-comments#readme",
"exports": {
".": {
"import": "./dist/bluesky-comments.es.js",
"require": "./dist/bluesky-comments.umd.js"
},
"./CommentSection": {
"import": "./dist/CommentSection.es.js",
"require": "./dist/CommentSection.umd.js"
},
"./Filters": {
"import": "./dist/CommentFilters.es.js",
"require": "./dist/CommentFilters.umd.js"
},
"./bluesky-comments.css": "./dist/bluesky-comments.css"
},
"type": "module"
}