-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 KB
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
{
"name": "fix-it-bot-react",
"version": "1.0.0",
"description": "Drop-in React component for submitting bug reports to Kilo AI agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles.css": "./dist/fix-it-bot.css"
},
"sideEffects": [
"*.css",
"dist/index.js",
"dist/index.mjs"
],
"files": [
"dist"
],
"scripts": {
"build:js": "tsup",
"build:css": "tailwindcss -i src/styles/fix-it-bot.css -o dist/fix-it-bot.css --minify",
"build:gen": "node scripts/gen-styles.mjs",
"build": "rm -rf dist && pnpm build:css && pnpm build:gen && pnpm build:js",
"dev": "tsup --watch"
},
"keywords": [
"react",
"bug-report",
"kilo",
"ai-agent",
"fix-it-bot"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aravhawk/fix-it-bot.git"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"react-hook-form": "^7.75.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/cli": "^4",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"tsup": "^8",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@parcel/watcher"
]
}
}