-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.19 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.19 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
{
"name": "create-viterex",
"version": "3.0.0-alpha.1",
"description": "CLI to scaffold a ViteRex (Redaxo + Vite) project",
"type": "module",
"author": "ynamite <ynamite@gmail.com>",
"homepage": "https://github.com/ynamite/create-viterex/tree/main/viterex-installer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ynamite/create-viterex.git"
},
"bugs": {
"url": "https://github.com/ynamite/create-viterex/issues"
},
"bin": {
"create-viterex": "./bin/cli.js"
},
"scripts": {
"dev": "node bin/cli.js",
"build": "tsup",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"execa": "^9.5.2",
"ora": "^8.2.0",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0"
},
"files": [
"dist",
"bin",
"templates",
"presets/default"
],
"engines": {
"node": ">=18"
},
"keywords": [
"redaxo",
"vite",
"cms",
"scaffold"
],
"license": "MIT"
}