-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "@qui-cli/progress",
"version": "3.1.0",
"description": "@qui-cli Plugin: Progress bar for CLI app",
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/progress#readme",
"repository": {
"type": "git",
"url": "https://github.com/battis/qui-cli.git",
"directory": "packages/progress"
},
"author": {
"name": "Seth Battis",
"url": "https://github.com/battis"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "del ./dist",
"build": "run-s build:*",
"build:clean": "run-s clean",
"build:compile": "tsc",
"prepack": "run-s build",
"release": "commit-and-tag-version"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-progress": "^3.12.0"
},
"devDependencies": {
"@qui-cli/colors": "workspace:*",
"@qui-cli/plugin": "workspace:*",
"@tsconfig/node-lts": "^24.0.0",
"@types/cli-progress": "^3.11.6",
"commit-and-tag-version": "^12.7.1",
"del-cli": "^7.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@qui-cli/colors": ">=3.2",
"@qui-cli/plugin": ">=3"
}
}