-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "termkit",
"version": "2.4.9",
"description": "Node.js terminal toolkit with CLI commands, progress bars, charts, tables, styled markup, prompts, and text utilities",
"keywords": [
"animation",
"argv",
"bar",
"bar-chart",
"chart",
"cli",
"color",
"command-line",
"confirm",
"framework",
"input",
"log",
"markup",
"middleware",
"multiselect",
"parser",
"progress",
"progress-bar",
"prompt",
"select",
"spinner",
"subcommands",
"table",
"terminal",
"typescript"
],
"homepage": "https://github.com/jayrdeaton/termkit#readme",
"bugs": {
"url": "https://github.com/jayrdeaton/termkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayrdeaton/termkit.git"
},
"license": "MIT",
"author": "Jay Deaton",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"demo:bar": "node demos/bar.js",
"demo:chart": "node demos/chart.js",
"demo:color": "node demos/color.js",
"demo:input": "node demos/input.js",
"demo:log": "node demos/log.js",
"demo:markup": "node demos/markup.js",
"demo:multiselect": "node demos/multiselect.js",
"demo:program": "node demos/program.js",
"demo:select": "node demos/select.js",
"demo:shell": "node demos/shell.js",
"demo:spinner": "node demos/spinner.js",
"demo:table": "node demos/table.js",
"demo:text": "node demos/text.js",
"fix": "eslint --fix",
"lint": "eslint",
"prepublishOnly": "npm run build",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "tsc --noEmit",
"validate": "npm run lint && npm run typecheck && npm test",
"preversion": "npm run validate"
},
"overrides": {
"brace-expansion": "^5.0.8",
"esbuild": "^0.28.1"
},
"dependencies": {
"cosmetic": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-package-json": "^1.6.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^14.0.0",
"jest": "^30.4.2",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
}
}