-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 5.53 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 5.53 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "kirapilot-app",
"private": true,
"version": "0.0.54",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/generate-build-info.js && tsc && vite build",
"preview": "vite preview",
"test": "node scripts/generate-build-info.js && jest",
"test:watch": "node scripts/generate-build-info.js && jest --watch",
"test:coverage": "node scripts/generate-build-info.js && jest --coverage",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "node scripts/generate-build-info.js && tauri build",
"tauri:build:debug": "tauri build --debug",
"build:all": "npm run type-check && npm run lint && npm run test && npm run build",
"release:prepare": "npm run sync-version && npm run build:all && npm run tauri:build",
"build:macos": "tauri build --target universal-apple-darwin",
"build:windows": "tauri build --target x86_64-pc-windows-msvc",
"build:linux": "tauri build --target x86_64-unknown-linux-gnu",
"build:linux-arm64": "tauri build --target aarch64-unknown-linux-gnu",
"build:all-platforms": "npm run build:all && npm run build:macos && npm run build:windows && npm run build:linux",
"cross-platform:install": "node scripts/build-cross-platform.js install-targets",
"cross-platform:build": "node scripts/build-cross-platform.js build-all",
"cross-platform:help": "node scripts/build-cross-platform.js help",
"prepare": "husky",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 200",
"lint:fix": "eslint src --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"i18n:check": "node scripts/i18n-manager.js check",
"i18n:validate": "node scripts/i18n-manager.js validate",
"i18n:export": "node scripts/i18n-manager.js export",
"i18n:stubs": "node scripts/i18n-manager.js stubs",
"translations:fix": "node scripts/auto-fix-translations.js",
"translations:fix-en": "node scripts/fix-en-placeholders.js",
"translations:check": "node scripts/i18n-manager.js check",
"translations:report": "node scripts/translation-utils.js report",
"translations:test-gemini": "node scripts/translation-utils.js test-gemini",
"translations:export": "node scripts/translation-utils.js export",
"translations:cleanup": "node scripts/translation-utils.js cleanup",
"translations:setup": "./scripts/setup-translations.sh",
"i18n:fix": "npm run translations:fix",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"sync-version": "node scripts/sync-version.js",
"build-info": "node scripts/show-build-info.js",
"version:patch": "npm version patch --no-git-tag-version && npm run sync-version && node scripts/version-commit.js patch",
"version:minor": "npm version minor --no-git-tag-version && npm run sync-version && node scripts/version-commit.js minor",
"version:major": "npm version major --no-git-tag-version && npm run sync-version && node scripts/version-commit.js major",
"docs:start": "cd docs && npm start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve",
"docs:install": "cd docs && npm install"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/generative-ai": "^0.24.1",
"@heroui/react": "^2.8.2",
"@heroui/theme": "^2.4.20",
"@internationalized/date": "^3.9.0",
"@langchain/core": "^0.3.71",
"@langchain/google-genai": "^0.2.16",
"@langchain/langgraph": "^0.4.5",
"@react-types/datepicker": "^3.13.1",
"@tailwindcss/vite": "^4.1.12",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.3.3",
"@tauri-apps/plugin-notification": "^2.3.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "^2.3.0",
"@tiptap/extension-placeholder": "^3.0.9",
"@tiptap/react": "^3.0.9",
"@tiptap/starter-kit": "^3.0.9",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.12",
"highlight.js": "^11.11.1",
"lucide-react": "^0.539.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"recharts": "^3.1.2",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"uuid": "^11.1.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.0.15"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.12",
"ts-jest": "^29.4.1",
"typescript": "~5.8.3",
"vite": "^7.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 200",
"prettier --write"
],
"*.{js,jsx,json,css,md}": [
"prettier --write"
]
}
}