-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "lg",
"version": "0.1.0",
"description": "A powerful CLI tool built with TypeScript and Node.js",
"type": "module",
"main": "dist/index.js",
"bin": {
"lg": "./dist/index.js",
"lgl": "./bin/lgl.js"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"refresh": "npm run build && npm link",
"update-cli": "npm uninstall -g lg && npm link"
},
"keywords": [
"cli",
"typescript",
"node"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@types/blessed": "^0.1.25",
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}