-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "@rtk/node-ts-cli-toolkit",
"version": "1.0.0",
"description": "Toolkit for node.js CLI applications built with Typescript",
"author": "Rouven T. Kruse <mail@rouvenkruse.de>",
"keywords": [
"tooling",
"cli",
"typescript"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">=15.9.0",
"npm": ">=7.5.3"
},
"main": "dist/cli-toolkit.js",
"types": "dist/cli-toolkit.d.ts",
"scripts": {
"prepack": "tsc --build --clean && tsc"
},
"devDependencies": {
"@rtk/prettier-config": "github:RTK/prettier-config#v1.0.0",
"@types/yargs": "^16.0.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"typescript": "^4.1.5"
},
"dependencies": {
"chalk": "^4.1.0",
"yargs": "^16.2.0"
},
"peerDependencies": {
"chalk": "^4.1.0",
"typescript": "^4.1.5",
"yargs": "^16.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RTK/node-ts-cli-toolkit.git"
},
"bugs": {
"url": "https://github.com/RTK/node-ts-cli-toolkit/issues"
},
"homepage": "https://github.com/RTK/node-ts-cli-toolkit#readme"
}