@easbot/tui 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +19 -17
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easbot/tui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "EASBot Terminal User Interface library - A fully autonomous TUI rendering engine ported and extended from pi-tui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -14,6 +14,23 @@
|
|
|
14
14
|
},
|
|
15
15
|
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "tsup --watch --env.NODE_ENV development",
|
|
19
|
+
"build": "tsup --env.NODE_ENV production",
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"test:run": "vitest run",
|
|
22
|
+
"lint": "biome check .",
|
|
23
|
+
"lint:fix": "biome check --write .",
|
|
24
|
+
"lint:report": "biome check --reporter=summary .",
|
|
25
|
+
"format": "biome format .",
|
|
26
|
+
"format:fix": "biome format --write .",
|
|
27
|
+
"type-check": "tsc --noEmit",
|
|
28
|
+
"clean": "npx rimraf dist node_modules",
|
|
29
|
+
"prepare": "echo norun",
|
|
30
|
+
"prepublishOnly": "pnpm build",
|
|
31
|
+
"publish:npm": "bash scripts/publish.sh",
|
|
32
|
+
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
33
|
+
},
|
|
17
34
|
"keywords": [
|
|
18
35
|
"tui",
|
|
19
36
|
"terminal",
|
|
@@ -57,20 +74,5 @@
|
|
|
57
74
|
},
|
|
58
75
|
"publishConfig": {
|
|
59
76
|
"access": "public"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"dev": "tsup --watch --env.NODE_ENV development",
|
|
63
|
-
"build": "tsup --env.NODE_ENV production",
|
|
64
|
-
"test": "vitest",
|
|
65
|
-
"test:run": "vitest run",
|
|
66
|
-
"lint": "biome check .",
|
|
67
|
-
"lint:fix": "biome check --write .",
|
|
68
|
-
"lint:report": "biome check --reporter=summary .",
|
|
69
|
-
"format": "biome format .",
|
|
70
|
-
"format:fix": "biome format --write .",
|
|
71
|
-
"type-check": "tsc --noEmit",
|
|
72
|
-
"clean": "npx rimraf dist node_modules",
|
|
73
|
-
"publish:npm": "bash scripts/publish.sh",
|
|
74
|
-
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
75
77
|
}
|
|
76
|
-
}
|
|
78
|
+
}
|