-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
41
42
43
44
45
46
47
48
{
"name": "nessim",
"version": "0.0.1",
"main": "build/index.js",
"type": "module",
"author": "Paolo Nessim",
"license": "MIT",
"description": "Nessim CLI is a powerful tool for building full-stack apps quickly using multiple frameworks, templates, and customizable workflows.",
"keywords": [
"cli",
"full-stack",
"frameworks",
"templates",
"nessim",
"nextjs",
"remix",
"laravel",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/PaoloJN/nessim-cli.git"
},
"bin": {
"nessim": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node ./build/index.js",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"@types/node": "^22.5.4",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"consola": "^3.2.3",
"figlet": "^1.7.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/figlet": "^1.5.8"
}
}