-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.04 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
{
"name": "hackycy-cli",
"type": "module",
"version": "0.0.68",
"description": "hackycy的脚手架工具",
"trustedDependencies": [
"bun",
"eslint",
"lint-staged",
"simple-git-hooks"
],
"author": "hackycy <hackycy@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/hackycy/hackycy-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/hackycy-cli.git"
},
"bugs": "https://github.com/hackycy/hackycy-cli/issues",
"keywords": [
"cli"
],
"publishConfig": {
"access": "public"
},
"sideEffects": [
"**/*.css"
],
"module": "src/index.ts",
"scripts": {
"build": "bun scripts/build.ts",
"check:frp-manifest": "bun scripts/generate-frp-manifest.ts --check",
"dev": "bun --watch src/index.ts",
"generate:frp-manifest": "bun scripts/generate-frp-manifest.ts",
"lint": "eslint --cache .",
"preflight:release": "bun run check:frp-manifest",
"release": "bumpp",
"start": "bun src/cli.ts",
"typecheck": "tsc",
"prepare": "simple-git-hooks",
"prepare:7zip": "bun scripts/prepare-seven-zip.ts"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"@hookform/resolvers": "^5.7.1",
"@modelcontextprotocol/sdk": "1.29.0",
"@pierre/diffs": "1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.23",
"@radix-ui/react-checkbox": "^1.3.9",
"@radix-ui/react-context-menu": "^2.3.7",
"@radix-ui/react-dialog": "^1.1.21",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-scroll-area": "^1.2.16",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-toggle-group": "^1.1.19",
"@radix-ui/react-tooltip": "^1.2.14",
"@tanstack/react-virtual": "^3.14.8",
"ansis": "^4.2.0",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.3",
"dayjs": "^1.11.19",
"diff": "9.0.0",
"dotenv": "^17.4.2",
"fflate": "^0.8.2",
"ignore": "^7.0.6",
"image-dimensions": "2.5.1",
"ink": "^7.0.0",
"lucide-react": "^1.25.0",
"monaco-editor": "0.56.0",
"react": "19.2.8",
"react-devtools-core": "^7.0.1",
"react-dom": "^19.2.8",
"react-hook-form": "^7.84.0",
"react-photo-view": "^1.2.7",
"react-resizable-panels": "^4.12.2",
"reveal-file": "^0.1.2",
"smol-toml": "1.7.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"uuid": "^14.0.1",
"wasm-image-optimization": "2.0.9",
"zod": "4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@types/bun": "^1.3.12",
"@types/node": "^24.11.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"bumpp": "^10.4.1",
"eslint": "^9.39.3",
"lint-staged": "^16.3.1",
"publint": "^0.3.17",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "bun run lint"
}
}