Skip to content

Commit 2e40930

Browse files
committed
feat(feedback): add integration for feedback
1 parent ae584e3 commit 2e40930

13 files changed

Lines changed: 815 additions & 1 deletion

File tree

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"changelog": "@changesets/cli/changelog",
44
"commit": false,
55
"fixed": [
6-
["fumapress", "@fumapress/ai"],
6+
["fumapress", "@fumapress/ai", "@fumapress/feedback"],
77
["create-fumapress", "create-fumapress-versions"]
88
],
99
"linked": [],

packages/feedback/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
css/generated.css

packages/feedback/css/preset.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "./generated.css";

packages/feedback/package.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "@fumapress/feedback",
3+
"version": "0.2.3",
4+
"description": "Feedback integration for Fumapress",
5+
"keywords": [
6+
"Docs",
7+
"Fumadocs"
8+
],
9+
"homepage": "https://press.fumadocs.dev",
10+
"license": "MIT",
11+
"author": "Fuma Nama",
12+
"repository": "github:fuma-nama/fumapress",
13+
"files": [
14+
"dist",
15+
"css"
16+
],
17+
"type": "module",
18+
"sideEffects": false,
19+
"publishConfig": {
20+
"access": "public"
21+
},
22+
"scripts": {
23+
"dev": "tsdown --watch",
24+
"build": "tsdown",
25+
"types:check": "tsc --noEmit"
26+
},
27+
"dependencies": {
28+
"@floating-ui/react-dom": "^2.1.8",
29+
"@radix-ui/react-collapsible": "^1.1.12",
30+
"class-variance-authority": "^0.7.1",
31+
"fumadocs-core": "^16.8.10",
32+
"fumadocs-ui": "^16.8.10",
33+
"fumapress": "workspace:*",
34+
"lucide-react": "^1.14.0",
35+
"tailwind-merge": "^3.5.0",
36+
"zod": "^4.4.3"
37+
},
38+
"devDependencies": {
39+
"@tailwindcss/oxide": "^4.3.0",
40+
"@types/node": "^25.7.0",
41+
"@types/react": "^19.2.14",
42+
"react": "^19.2.6",
43+
"react-dom": "^19.2.6",
44+
"tsdown": "0.22.0",
45+
"typescript": "^6.0.3"
46+
},
47+
"peerDependencies": {
48+
"@types/react": "*",
49+
"react": "^19.2.0",
50+
"react-dom": "^19.2.0"
51+
},
52+
"peerDependenciesMeta": {
53+
"@types/react": {
54+
"optional": true
55+
}
56+
}
57+
}

0 commit comments

Comments
 (0)