-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "@clux-cli/cli",
"version": "0.5.0",
"license": "MIT",
"description": "Clux — tmux session multiplexer with web dashboard and CLI.",
"main": "dist/index.js",
"bin": {
"clux": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/devhelp/clux.git"
},
"scripts": {
"build": "tsc && node esbuild.mjs",
"dev:web": "tsc && cp -r public dist/web/public && node dist/web/server.js",
"cli": "node dist/index.js",
"clean": "rm -rf dist",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"commander": "^13.0.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"ora": "^5.4.1",
"express": "^4.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}