-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@sabahattink/codediag",
"version": "0.2.0",
"description": "Automated project health scanner for Node.js, NestJS, Express, and Next.js projects.",
"author": "Sabahattin Kalkan <hello@sabahattinkalkan.com> (https://sabahattinkalkan.com)",
"license": "MIT",
"type": "module",
"bin": {
"codediag": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist/index.js",
"dist/index.js.map",
"schema"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsup && node scripts/normalize-action-legal.mjs",
"bundle:check": "git diff --exit-code -- dist/action.cjs dist/action.cjs.LEGAL.txt",
"dev": "tsup --watch",
"start": "node dist/index.js",
"extension:build": "node scripts/build-vscode-extension.mjs",
"extension:typecheck": "tsc --noEmit -p extensions/vscode/tsconfig.json",
"extension:check": "npm run extension:typecheck && npm run extension:build",
"extension:package": "npm run extension:check && node scripts/package-vscode-extension.mjs",
"lint": "biome lint src tests tests-cli extensions/vscode/src scripts",
"format": "biome format --write src tests tests-cli extensions/vscode/src scripts",
"format:check": "biome format src tests tests-cli extensions/vscode/src scripts",
"test": "tsx --test tests/*.test.ts",
"test:cli": "node --test tests-cli/*.test.mjs",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run extension:check && npm test && npm run build && npm run bundle:check && npm run test:cli",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sabahattink/codediag.git"
},
"homepage": "https://sabahattink.github.io/codediag/",
"bugs": {
"url": "https://github.com/sabahattink/codediag/issues"
},
"keywords": [
"code-quality",
"diagnostics",
"nestjs",
"nextjs",
"express",
"security",
"audit",
"cli",
"health-check",
"static-analysis",
"devtools",
"testing"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"tsup": {
"esbuild": "^0.28.1"
}
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"glob": "^13.0.6",
"ora": "^8.1.0",
"ts-morph": "^28.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^22.0.0",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.9.2",
"ajv": "^8.20.0",
"esbuild": "^0.28.1",
"tsup": "^8.3.0",
"tsx": "^4.20.6",
"typescript": "^5.6.0"
}
}