-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.88 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
64
{
"name": "coding-agents-tmux",
"version": "0.0.1",
"private": true,
"description": "tmux integration for terminal coding agent sessions",
"homepage": "https://github.com/corwinm/coding-agents-tmux",
"bugs": {
"url": "https://github.com/corwinm/coding-agents-tmux/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corwinm/coding-agents-tmux.git"
},
"bin": {
"coding-agents-tmux": "bin/coding-agents-tmux"
},
"type": "module",
"scripts": {
"bootstrap": "npm ci --omit=dev",
"prepare": "husky",
"list": "./bin/coding-agents-tmux list",
"dev": "./bin/coding-agents-tmux",
"lint": "oxlint --deny-warnings .",
"lint:fix": "oxlint --fix --deny-warnings .",
"shell:check": "shellcheck --shell=bash bin/* scripts/*.sh",
"shell:fmt": "node ./scripts/shfmt.mjs --write",
"shell:fmt:check": "node ./scripts/shfmt.mjs --check",
"test": "node --test",
"check": "./bin/coding-agents-tmux --help",
"typecheck": "tsc --project tsconfig.json",
"sync-tmux": "./scripts/sync-tmux-plugin.sh",
"restore-tmux": "./scripts/sync-tmux-plugin.sh --restore",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check ."
},
"dependencies": {
"commander": "^15.0.0"
},
"devDependencies": {
"@types/node": "^25.9.5",
"@wasm-fmt/shfmt": "^0.2.7",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"oxfmt": "^0.41.0",
"oxlint": "^1.74.0",
"typescript": "^7.0.2"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts}": [
"oxlint --fix --deny-warnings",
"oxfmt"
],
"{bin/*,scripts/*.sh}": [
"node ./scripts/shfmt.mjs --write",
"shellcheck --shell=bash"
],
"**/*.{json,jsonc,json5,md,mdx,yml,yaml,toml,html,css,scss,less,gql,graphql,vue,hbs}": "oxfmt"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@11.12.1"
}