-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
{
"name": "@3a2dev/ansi-tui",
"version": "0.1.0",
"description": "Ansible Terminal User Interface",
"type": "module",
"author": "3A2DEV",
"packageManager": "npm@11.12.1",
"repository": {
"type": "git",
"url": "git+https://github.com/3A2DEV/ansi-tui.git"
},
"homepage": "https://github.com/3A2DEV/ansi-tui#readme",
"bugs": {
"url": "https://github.com/3A2DEV/ansi-tui/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"ansi-tui": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"install.sh"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:core": "vitest run tests/core",
"test:tools": "vitest run tests/tools",
"test:components": "vitest run tests/components",
"test:screens": "vitest run tests/screens",
"test:hooks": "vitest run tests/hooks",
"test:package": "vitest run tests/package",
"test:watch": "vitest",
"lint": "eslint src --ext .ts,.tsx",
"pack:check": "npm pack --dry-run",
"verify": "npm run typecheck && npm run lint && npm test && npm run build",
"prepack": "npm run build",
"changelog:draft": "towncrier build --draft --version $(node -p \"require('./package.json').version\")",
"changelog": "towncrier build --version $(node -p \"require('./package.json').version\") --date $(date +%Y-%m-%d)"
},
"dependencies": {
"chalk": "^5.0.0",
"env-paths": "^3.0.0",
"execa": "^8.0.0",
"ink": "^5.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-table": "^3.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.0.0",
"strip-ansi": "^7.0.0",
"uuid": "^10.0.0",
"which": "^4.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^18.0.0",
"@types/uuid": "^10.0.0",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"ink-testing-library": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ansible",
"tui",
"cli",
"devops",
"automation"
],
"license": "MIT"
}