-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 759 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 759 Bytes
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
{
"name": "tmux-core",
"version": "0.1.0",
"description": "Generic tmux session management for programmatic control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tmux-core": "./dist/cli.js"
},
"scripts": {
"build": "tsc && chmod +x ./dist/cli.js",
"test": "jest",
"test:unit": "jest tests/unit/",
"test:integration": "jest tests/integration/",
"lint": "eslint src/"
},
"keywords": [
"tmux",
"terminal",
"session",
"automation",
"cli"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^14.0.2"
}
}