-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "greplog",
"version": "1.0.0",
"description": "`cli-typescript-starter` is a simple and efficient tool that enables you to quickly create command-line applications using TypeScript. With its well-structured codebase and robust features, it provides an easy-to-use interface for developing and testing your CLI applications. It also comes with a set of predefined tools that allow you to quickly create a basic structure for your CLI application, which can be customized according to your needs. Additionally, it provides a simple way to add dependencies and plugins to your CLI app, making it ideal for developers who want to use third-party libraries and extend the functionality of their CLI apps.",
"bin": {
"greplog": "./bin/run"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kucherenko/cli-typescript-starter.git"
},
"scripts": {
"build": "tsup-node",
"build:watch": "tsup-node --watch",
"clean": "rimraf dist",
"compile": "tsc",
"start": "ts-node ./bin/run.ts",
"start:node": "node ./bin/run",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"typescript",
"starter",
"cli",
"bootstrap"
],
"author": "Andrey Kucherenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.12",
"@types/prompts": "^2.4.9",
"@types/signale": "^1.4.7",
"@types/yargs": "^17.0.32",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/express": "^5.0.0",
"consola": "^3.2.3",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"giget": "^1.2.3",
"picocolors": "^1.0.1",
"yargs": "^17.7.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}