-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
73 lines (73 loc) · 2.45 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bsky",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://kite.black",
"scripts": {
"dev": "vite --host",
"predeploy": "npm run build",
"deploy": "echo kite.black > ./dist/CNAME && gh-pages -d dist",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@atproto/api": "latest",
"@atproto/lexicon": "^0.1.0",
"@atproto/uri": "latest",
"@atproto/xrpc": "^0.1.0",
"@ipld/car": "^5.1.1",
"@rollup/plugin-replace": "^5.0.2",
"@tiptap/extension-character-count": "^2.0.3",
"@tiptap/extension-document": "^2.0.3",
"@tiptap/extension-hard-break": "^2.0.3",
"@tiptap/extension-history": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-mention": "^2.0.3",
"@tiptap/extension-paragraph": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/extension-text": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/suggestion": "^2.0.3",
"@webscopeio/react-textarea-autocomplete": "^4.9.2",
"buffer": "^6.0.3",
"cbor": "^8.1.0",
"cbor-x": "^1.5.2",
"compressorjs": "^1.2.1",
"graphemer": "^1.4.0",
"image-conversion": "^2.1.1",
"jotai": "^2.0.4",
"markdown-to-jsx": "^7.2.0",
"multiformats": "^11.0.2",
"prosemirror-view": "^1.31.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^8.0.7",
"react-portal": "^4.2.2",
"react-query": "^3.39.3",
"react-router-dom": "^6.9.0",
"react-slick": "^0.29.0",
"store": "^2.0.12",
"tlds": "^1.238.0",
"vite-plugin-pwa": "^0.14.7",
"wavesurfer.js": "^6.6.3"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-portal": "^4.0.4",
"@types/react-slick": "^0.23.10",
"@types/store": "^2.0.2",
"@types/wavesurfer.js": "^6.0.6",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.2",
"@vitejs/plugin-react": "^3.1.0",
"classnames": "latest",
"gh-pages": "^5.0.0",
"sass": "^1.59.2",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}