-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.79 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@himuraw/devtools-ai",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.13.1",
"description": "An AI-powered developer toolkit — 10 tools available as a web app and a CLI, powered by OpenRouter.",
"keywords": [
"ai",
"cli",
"developer-tools",
"openrouter",
"nextjs",
"code-review",
"code-explainer"
],
"homepage": "https://devtools-ai.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/HIMURAw/DevTools-AI.git"
},
"bugs": {
"url": "https://github.com/HIMURAw/DevTools-AI/issues"
},
"license": "MIT",
"author": "HIMURA",
"engines": {
"node": ">=20.9.0"
},
"bin": {
"devtools-ai": "./dist/cli/index.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"cli": "tsx src/cli/index.ts",
"build:cli": "node scripts/build-cli.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky || true && node scripts/build-cli.mjs",
"prepack": "node scripts/build-cli.mjs"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@hookform/resolvers": "^5.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^15.0.0",
"framer-motion": "^12.42.2",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.81.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tsx": "^4.23.1",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.3",
"esbuild": "^0.28.1",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}