-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 KB
/
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
38
39
40
{
"name": "dejavu-cli",
"version": "0.0.2",
"description": "A powerful CLI tool for web libraries like React, simplifying component creation and enabling seamless development.",
"main": "index.js",
"bin": {
"dejavu": "index.js",
"vu": "index.js"
},
"scripts": {
"build": "rimraf dist/ && tsc && ts-node scripts/build.ts",
"dev": "ts-node src/index.ts"
},
"author": "Jean Pierre Ortiz",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.1",
"commander": "^11.0.0",
"inquirer": "^8.2.0"
},
"devDependencies": {
"rimraf": "^5.0.1",
"@types/inquirer": "^8.2.0",
"@types/node": "^20.4.8",
"esbuild": "^0.18.19",
"ts-node": "^10.9.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CoffeJeanCode/dejavu-cli"
},
"bugs": {
"url": "https://github.com/CoffeJeanCode/dejavu-cli/issues"
},
"homepage": "https://github.com/CoffeJeanCode/dejavu-cli#readme"
}