-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "repo-checkup",
"version": "0.1.6",
"description": "A zero-config CLI that checks JavaScript and TypeScript repositories for configuration, tooling, testing, CI, and project health.",
"type": "module",
"bin": {
"repo-checkup": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsdown --config-loader native",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=22"
},
"keywords": [
"cli",
"javascript",
"typescript",
"repository",
"repository-health",
"developer-tools",
"ci",
"testing"
],
"license": "MIT",
"author": "Randy-R-code <contact@randy-code.dev> (https://github.com/Randy-R-code)",
"repository": {
"type": "git",
"url": "git+https://github.com/Randy-R-code/repo-checkup.git"
},
"homepage": "https://github.com/Randy-R-code/repo-checkup#readme",
"bugs": {
"url": "https://github.com/Randy-R-code/repo-checkup/issues"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@types/node": "^26.4.1",
"tsdown": "^0.23.0",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vitest": "^5.0.0"
},
"dependencies": {
"cac": "^7.0.0",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"tinyglobby": "^0.2.17",
"yaml": "^2.9.0"
}
}