-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tasktree-cli",
"version": "8.1.0",
"description": "Simple terminal task tree - helps you keep track of your tasks in a tree structure.",
"license": "MIT",
"homepage": "https://github.com/keindev/tasktree#readme",
"author": "Daniil Ryazanov <[email protected]>",
"keywords": [
"ascii",
"busy",
"cli",
"console",
"idle",
"indicator",
"loading",
"progress",
"task",
"term",
"terminal",
"tree",
"wait"
],
"bugs": "https://github.com/keindev/tasktree/issues",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js",
"./lib/ProgressBar": "./lib/ProgressBar.js",
"./lib/Task": "./lib/Task.js",
"./lib/TaskTree": "./lib/TaskTree.js",
"./lib/Theme": "./lib/Theme.js"
},
"repository": {
"type": "git",
"url": "https://github.com/keindev/tasktree.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "run-s build:*",
"build:ts": "rimraf lib && tsc --extendedDiagnostics",
"generate": "run-s generate:*",
"generate:changelog": "changelog generate --bump",
"generate:ghinfo": "ghinfo generate -d media -t utils",
"lint": "run-s lint:*",
"lint:eslint": "rimraf coverage && eslint src --ext .ts",
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"**/*.{js,ts,tsx,md,yml,json}\"",
"prepare": "run-s prepare:*",
"prepare:config": "ts-package-shared-config",
"prepare:docs": "docs-shared-config",
"prepare:husky": "husky install",
"prepare:vscode": "vscode-shared-config",
"release": "run-s prepare lint test build generate",
"test": "run-s test:*",
"test:jest": "node --experimental-vm-modules node_modules/.bin/jest"
},
"dependencies": {
"chalk-template": "^1.1.0",
"elegant-spinner": "^3.0.0",
"figures": "^6.0.1",
"stdout-update": "^4.0.1"
},
"devDependencies": {
"@tagproject/ts-package-shared-config": "^11.0.4",
"enquirer": "^2.4.1",
"strip-ansi": "^7.1.0",
"ts-node": "^10.9.2"
}
}