-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.91 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
{
"name": "@berlysia-dotfiles/root",
"version": "1.0.0",
"private": true,
"description": "Dotfiles managed by chezmoi with Claude Code hooks",
"keywords": [],
"author": "",
"workspaces": [
"home/dot_claude"
],
"type": "module",
"scripts": {
"test": "node --test home/dot_claude/hooks/tests/**/*.test.ts",
"typecheck": "tsgo --noEmit",
"format": "oxfmt --ignore-path .oxfmtignore . && prettier --write '**/*.{yml,yaml}' --ignore-unknown",
"format:check": "oxfmt --check --ignore-path .oxfmtignore . && prettier --check '**/*.{yml,yaml}' --ignore-unknown",
"ci:local": "./scripts/ci-local.sh all",
"ci:local:codex": "./scripts/ci-local.sh codex",
"ci:local:lint": "./scripts/ci-local.sh lint",
"ci:local:shell": "./scripts/ci-local.sh shell",
"ci:local:typescript": "./scripts/ci-local.sh typescript",
"lint:shell": "./scripts/lint-shell.sh",
"smoke:chezmoi": "./scripts/smoke-chezmoi-scripts.sh",
"lint:actions": "./scripts/lint-actions.sh",
"lint:codex": "./scripts/check-codex-config.sh",
"lint:oxlint": "oxlint --ignore-pattern '.claude/skills/' --ignore-pattern '.codex/skills/' --ignore-pattern '.skills/' --ignore-pattern 'node_modules/' .",
"lint": "npm run format:check && npm run lint:oxlint && npm run lint:shell && npm run lint:actions && npm run lint:codex",
"check": "npm run test && npm run typecheck && npm run lint",
"prepare": "./scripts/install-hooks.sh"
},
"dependencies": {
"@drawio/mcp": "1.2.6",
"@playwright/mcp": "0.0.75",
"@upstash/context7-mcp": "2.2.4",
"ccstatusline": "2.2.12",
"chrome-devtools-mcp": "0.25.0",
"supergateway": "3.4.3"
},
"devDependencies": {
"@mizchi/lsmcp": "0.10.0",
"@types/node": "24.12.4",
"@typescript/native-preview": "7.0.0-dev.20260510.1",
"knip": "6.12.2",
"oxfmt": "0.48.0",
"oxlint": "1.66.0",
"prettier": "3.8.3",
"typescript": "5.9.3"
}
}