-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 790 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 790 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
{
"name": "git-glimpse-monorepo",
"private": true,
"version": "0.1.0",
"description": "Auto-generate visual demo clips of UI changes in pull requests",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:llm": "vitest run --config vitest.llm.config.ts",
"test:all": "vitest run && vitest run --config vitest.integration.config.ts",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.0",
"js-yaml": "^4.1.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}