-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 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
{
"name": "termz",
"version": "0.6.0",
"description": "Setup terminals on your own terms",
"author": "RikThePixel",
"license": "GPL-3.0",
"scripts": {
"build": "tsup",
"postbuild": "npm run build:generate-json-schema",
"build:generate-json-schema": "tsx ./scripts/generate-json-schema.ts",
"watch": "tsup --watch",
"dev": "tsx ./src/index.ts",
"preview": "node ./bin/index.js",
"lint": "eslint src",
"format": "prettier -w ."
},
"bin": {
"termz": "bin/index.js"
},
"files": [
"bin",
"LICENSE",
"package.json",
"README.md"
],
"workspaces": [
"./plugins/*"
],
"dependencies": {
"@inquirer/core": "^8.0.1",
"@inquirer/prompts": "^5.0.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"execa": "^8.0.1",
"semver": "^7.6.0",
"which": "^4.0.0",
"window-size": "^1.1.1",
"zod": "^4.0.5"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"@types/which": "^3.0.3",
"@types/window-size": "^1.1.4",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"typescript-eslint": "^7.8.0"
},
"volta": {
"node": "20.12.1",
"npm": "10.7.0"
},
"keywords": [
"CLI",
"terminal"
]
}