-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "opusify-cli",
"version": "1.0.0",
"description": "The Full-Stack Scaffold Engine — Generate production-ready Next.js and Vite applications with one command.",
"main": "index.js",
"type": "module",
"bin": {
"opusify": "./index.js"
},
"files": [
"index.js",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:templates": "node scripts/test-templates.js",
"test:templates:quick": "node scripts/test-templates.js --quick",
"lint": "eslint index.js src/",
"format": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ebyte-Lab/opusify-cli.git"
},
"keywords": [
"cli",
"scaffold",
"generator",
"nextjs",
"react",
"vite",
"tailwindcss",
"typescript",
"boilerplate",
"template",
"fullstack",
"opusify"
],
"author": "Ebyte Soft Lab <https://github.com/Ebyte-Lab>",
"contributors": [
"Josephat Sangwa <https://github.com/Josephat-S>",
"Ituze Agacyo Ebedi Melecki <https://github.com/ISONIC0788>",
"Meekness Bonheur <https://github.com/meekness12>",
"Arafati Shema <https://github.com/shemaarafati2020>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Ebyte-Lab/opusify-cli/issues"
},
"homepage": "https://github.com/Ebyte-Lab/opusify-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"giget": "^3.2.0",
"handlebars": "^4.7.9",
"inquirer": "^14.0.0",
"ora": "^9.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.3"
},
"overrides": {
"tiged": {
"tar": "^7.5.7"
}
}
}