-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@pompidup/cligrid",
"version": "2.0.0",
"description": "A powerful library designed to provide a flexible and extensible system for managing and rendering terminal user interfaces.",
"author": "Pompidup",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Pompidup/cligrid.git"
},
"keywords": [
"cli",
"grid",
"terminal",
"ui",
"cligrid",
"responsive",
"dynamic",
"layout",
"component"
],
"bugs": {
"url": "https://github.com/Pompidup/cligrid/issues"
},
"homepage": "https://github.com/Pompidup/cligrid#readme",
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch",
"test": "vitest",
"lint": "tsc",
"demo:dashboard": "tsx demo/dashboard.ts",
"demo:form": "tsx demo/interactive-form.ts",
"demo:advanced": "tsx demo/advanced.ts",
"demo:castle": "tsx demo/castle.ts",
"demo:segments": "tsx demo/styled-segments.ts",
"demo:showcase": "tsx demo/showcase-v2.ts"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@types/node": "^18.0.0",
"tsup": "^6.7.0",
"tsx": "^4.0.0",
"typescript": "^5.5.4",
"vitest": "^2.1.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"string-width": "^8.2.0"
}
}