-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 2.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "supabase-comments-x",
"type": "module",
"version": "0.1.8",
"description": "Comments powered by React Query and Supabase",
"author": "Mustaqim Arifin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mustaqimarifin/supabase-comments-x.git"
},
"keywords": ["postgres", "comments", "supabase", "tanstack", "react-query"],
"exports": {
".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
"./comments": {
"types": "./dist/components/CommentSection.d.ts",
"default": "./dist/components/CommentSection.js"
},
"./commentsprovider": {
"types": "./dist/components/CommentsProvider.d.ts",
"default": "./dist/components/CommentsProvider.js"
},
"./authmodal": {
"types": "./dist/components/AuthModal.d.ts",
"default": "./dist/components/AuthModal.js"
},
"./styles": { "default": "./dist/style.css" },
"./dist/*": "./dist/*"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": { "*": ["./dist/*", "./dist/index.d.ts"] }
},
"bin": { "supabase-comments-x": "bin/script.js" },
"files": ["bin", "dist"],
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 lib/**/*.css dist/",
"build": "bun clean && tsc && bun copy-files",
"lint": "eslint . --fix --cache --cache-location eslintcache",
"format": "bun prettier --write . --ignore-path .gitignore",
"fix": "bun format && bun lint",
"ci:version": "changeset version",
"ci:release": "changeset publish"
},
"peerDependencies": {
"@supabase/supabase-js": "^2.44.4",
"@tanstack/react-query": "^5.51.11",
"postcss": "8.4.39",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "3.4.6"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@tiptap/extension-image": "^2.5.5",
"@tiptap/extension-link": "2.5.5",
"@tiptap/extension-mention": "^2.5.5",
"@tiptap/pm": "^2.5.5",
"@tiptap/react": "2.5.5",
"@tiptap/starter-kit": "2.5.5",
"@tiptap/suggestion": "2.5.5",
"@types/traverse": "^0.6.37",
"react-image": "^4.1.0",
"supalazy": "1.0.7",
"tinycolor2": "1.6.0",
"tippy.js": "^6.3.7",
"traverse": "^0.6.9"
},
"devDependencies": {
"@antfu/eslint-config": "^2.23.2",
"@changesets/cli": "^2.27.7",
"@eslint-react/eslint-plugin": "^1.5.30",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/tinycolor2": "^1.4.6",
"autoprefixer": "^10.4.19",
"commander": "^12.1.0",
"copyfiles": "^2.4.1",
"eslint": "9.7.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"pg": "^8.12.0",
"rimraf": "^6.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"release": { "branches": ["main"] },
"publishConfig": { "access": "public" }
}