This repository was archived by the owner on Mar 18, 2026. It is now read-only.
forked from chjj/blessed
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.17 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
{
"name": "@unblessed/root",
"version": "0.0.0",
"private": true,
"description": "Unblessed TUI library monorepo",
"author": "Vinicius De Antoni <vdeantoni@gmail.com>",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.18.3",
"repository": {
"type": "git",
"url": "https://github.com/vdeantoni/unblessed.git"
},
"homepage": "https://github.com/vdeantoni/unblessed",
"bugs": {
"url": "https://github.com/vdeantoni/unblessed/issues"
},
"keywords": [
"curses",
"tui",
"tput",
"terminfo",
"termcap",
"typescript",
"terminal"
],
"tags": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rimraf .turbo node_modules/.cache",
"test": "turbo run test",
"test:ui": "turbo run test:ui",
"test:coverage": "turbo run test:coverage",
"bench": "turbo run bench",
"lint": "turbo lint",
"lint:check": "turbo lint:check",
"format": "turbo format",
"format:check": "turbo format:check",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "24.6.2",
"@types/omggif": "^1.0.5",
"@types/pngjs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lodash-es": "^4.17.21",
"omggif": "^1.0.10",
"pngjs": "^7.0.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.0",
"tsup": "8.5.0",
"tsx": "^4.20.6",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"vite": "^7.1.10",
"vitest": "^3.2.4"
}
}