-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.1 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.1 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
48
49
50
51
52
53
54
55
{
"name": "@munesoft/cli-ui",
"version": "1.0.0",
"description": "Beautiful CLI spinners, progress bars, and task displays — with zero setup.",
"type": "module",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
}
},
"files": [
"src",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"demo": "node examples/demo.js",
"demo:spinner": "node examples/spinner.js",
"demo:progress": "node examples/progress.js",
"demo:tasks": "node examples/tasks.js"
},
"keywords": [
"cli",
"spinner",
"progress",
"progress-bar",
"tasks",
"terminal",
"ui",
"tui",
"loading",
"async",
"ora",
"listr"
],
"author": {
"name": "Munesoft"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/munesoft/cli-ui.git"
},
"bugs": {
"url": "https://github.com/munesoft/cli-ui/issues"
},
"homepage": "https://github.com/munesoft/cli-ui#readme",
"engines": {
"node": ">=14.0.0"
}
}