-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.42 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": "dotagents-monorepo",
"version": "3.1.0",
"description": "Shared tooling for coding agents (workspace root)",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "node --import tsx ./node_modules/oxlint/bin/oxlint . --deny-warnings && pnpm lint:ast-grep",
"lint:ast-grep": "ast-grep scan && ast-grep test --skip-snapshot-tests",
"typecheck": "pnpm -r typecheck",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"dev": "pnpm --filter @sentry/dotagents dev",
"qa:example": "pnpm build && node skills/dotagents-qa/scripts/qa-example.mjs",
"qa:plugins": "pnpm build && node skills/dotagents-qa/scripts/qa-example.mjs plugin-clients"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"packages/*/src/**/*.ts": [
"node --import tsx ./node_modules/oxlint/bin/oxlint --deny-warnings"
]
},
"packageManager": "pnpm@10.28.2",
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@ast-grep/cli": "^0.44.1",
"@oxlint/plugins": "1.79.0",
"@types/node": "^25.2.1",
"lint-staged": "^16.2.7",
"oxlint": "1.79.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vitest": "^4.1.11"
},
"pnpm": {
"overrides": {
"esbuild": "^0.28.1",
"rollup": ">=4.59.0"
}
}
}