-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.23 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.23 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
{
"name": "@gwack/cli",
"version": "0.2.4",
"private": false,
"homepage": "https://github.com/Gwack-Framework/cli",
"readme": "README.md",
"description": "PHP Framework with vue intergration",
"type": "module",
"main": "src/index.js",
"bin": {
"gwack": "bin/gwack"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"php",
"framework",
"vue",
"full-stack",
"performance"
],
"author": "Fathi Helmi (@MrF0o)",
"license": "MIT",
"dependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"chalk": "5.6.0",
"chokidar": "4.0.3",
"commander": "14.0.0",
"concurrently": "9.2.1",
"glob": "11.0.3",
"unplugin-auto-import": "^0.17.0",
"vite": "6.3.5",
"vue": "3.5.20",
"vue-router": "^4.2.0",
"ws": "8.18.3"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/chokidar": "^1.7.5",
"@types/commander": "^2.12.0",
"@types/concurrently": "^6.4.0",
"@types/node": "^24.5.0",
"@types/vue": "^1.0.31",
"@types/ws": "^8.18.1",
"typescript": "^5.9.2"
},
"files": [
"bin",
"src",
"templates",
"dist",
"shims",
"README.md"
],
"engines": {
"node": ">=18.0.0"
}
}