forked from Nigh/AHK-webview-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (27 loc) · 756 Bytes
/
package.json
File metadata and controls
28 lines (27 loc) · 756 Bytes
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
{
"name": "ahk-webview-template",
"private": true,
"version": "1.0.0",
"description": "A vite+tailwindcss webview template for AHK",
"type": "module",
"scripts": {
"dev:ahk": "ahk64 run app.ahk",
"dev:front": "vite",
"build:ahk": "ahk64 compile /in app.ahk /compress 0",
"build:front": "vite build",
"preview:front": "vite preview",
"dev": "node scripts/dev.js",
"dev:watch": "set AHK_WATCH=1 && node scripts/dev.js",
"build": "vite build && ahk64 compile /in app.ahk /compress 0",
"preview": "start /B app.exe"
},
"devDependencies": {
"ahk64": "^2.0.19",
"chokidar": "^4.0.3",
"vite": "^7.1.7"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"tailwindcss": "^4.1.13"
}
}