-
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.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"devDependencies": {
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"name": "mena",
"version": "1.0.2",
"description": "A customizable progress bar for console applications.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"release": "standard-version",
"release:first": "standard-version --skip.bump",
"release:soft": "standard-version --skip.bump --skip.commit --skip.tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolx-dev/mena.git"
},
"keywords": [
"CLI",
"progressbar",
"style",
"console",
"progress",
"bar"
],
"author": "William Manco",
"license": "MIT",
"bugs": {
"url": "https://github.com/toolx-dev/mena/issues"
},
"homepage": "https://github.com/toolx-dev/mena#readme",
"dependencies": {
"calime": "^1.0.1"
}
}