-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.71 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.71 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
{
"name": "codex-shortcut",
"private": true,
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"app": "node ./scripts/open-app.mjs",
"dev": "vite --host 127.0.0.1 --port 1420 --strictPort",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview --host 127.0.0.1 --port 1420 --strictPort",
"tauri": "node ./scripts/run-tauri.mjs",
"tauri:dev": "node ./scripts/run-tauri.mjs dev",
"tauri:build": "node ./scripts/run-tauri.mjs build",
"tauri:build:mac": "node ./scripts/build-macos-release.mjs",
"tauri:build:mac:fast": "node ./scripts/build-macos-release.mjs --skip-stapling",
"tauri:build:mac:unsigned": "node ./scripts/build-macos-release.mjs --unsigned",
"tauri:staple:mac": "node ./scripts/staple-macos-release.mjs",
"tauri:verify:mac": "node ./scripts/verify-macos-release.mjs",
"tauri:verify:mac:unsigned": "node ./scripts/verify-macos-release.mjs --unsigned",
"release:github": "node ./scripts/publish-github-release.mjs"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^5.4.21"
}
}