-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1002 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
{
"name": "@lundjrl-npm/repo-cli",
"version": "1.0.6",
"description": "Cli tool for pulling templated repos quickly",
"main": "dist/index.js",
"author": "lundjrl",
"license": "MIT",
"private": false,
"keywords": [],
"type": "module",
"bin": {
"repo-cli": "dist/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@types/shelljs": "^0.8.14",
"chalk": "^5.2.0",
"commander": "^13.0.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.1.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^5.1.3"
}
}