-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 885 Bytes
/
package.json
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
{
"name": "project-scaffold",
"version": "1.1.4",
"description": "A CLI tool for scaffolding and managing development projects/ React, Typescript, Vite, TailwindCSS, Framer Motion, React Router Dom.",
"main": "index.js",
"bin": {
"scaffold": "./index.js"
},
"type": "module",
"scripts": {
"start": "node index.js"
},
"keywords": [
"cli",
"development",
"scaffolding",
"project management"
],
"author": "Anas / paradimes",
"license": "MIT",
"dependencies": {
"inquirer": "^9.1.4",
"minimist": "^1.2.8",
"ora": "^6.1.2"
},
"devDependencies": {
"vitest": "^1.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/paradimes/dev-cli-tool.git"
},
"bugs": {
"url": "https://github.com/paradimes/dev-cli-tool/issues"
},
"homepage": "https://github.com/paradimes/dev-cli-tool#readme"
}