-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.87 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
{
"name": "蜗牛个人导航",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A modern cloud-based navigation page built with React and TypeScript",
"keywords": [
"navigation",
"bookmarks",
"cloudflare",
"react",
"typescript",
"vite"
],
"author": "eallion",
"license": "MIT",
"homepage": "https://github.com/eallion/favorite-cloudflare",
"repository": {
"type": "git",
"url": "https://github.com/eallion/favorite-cloudflare.git"
},
"bugs": {
"url": "https://github.com/eallion/favorite-cloudflare/issues"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,md,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,md,json}\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/genai": "^1.33.0",
"buffer": "^6.0.3",
"lucide-react": "^0.554.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^22.19.2",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"terser": "^5.44.1",
"typescript": "~5.8.3",
"vite": "^6.4.1"
}
}