forked from jeanp117/ctsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 984 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
38
39
40
41
{
"name": "ctsp",
"displayName": "Create TypeScript Project",
"description": "A CLI tool to create a NodeJS project with TypeScript",
"version": "1.0.3",
"author": "Jean Rodríguez",
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/jeanp117/ctsp"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --clear --respawn --exit-child --watch --transpile-only src/main.ts",
"start": "node dist/main.js",
"build": "npx tsc --build"
},
"preferGlobal": true,
"bin": {
"ctsp": "dist/main.js"
},
"keywords": [
"TypeScript",
"NodeJS",
"CLI",
"Starter"
],
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.16",
"ts-node-dev": "^1.1.8",
"typescript": "^4.8.3"
},
"dependencies": {
"cmdify": "^0.0.4",
"colors": "^1.4.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4"
}
}