-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "fta-check",
"version": "1.0.1",
"description": "Thin wrapper around FTA (Fast TypeScript Analyzer) that provides actionable error messages for automated code quality checks and AI agent guidance",
"author": "Łukasz Jerciński",
"license": "MIT",
"scripts": {
"prepack": "pnpm run clean && pnpm run build",
"prepare": "git config core.hooksPath .githooks",
"build": "tsc --build tsconfig.app.json",
"clean": "rm -rf dist *.tsbuildinfo",
"dev": "tsc --build tsconfig.app.json --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fta": "fta-check",
"knip": "knip",
"lint": "eslint",
"start": "node ./bin/fta-check",
"test": "vitest run",
"typecheck": "tsc -b --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jercik/fta-check.git"
},
"homepage": "https://github.com/Jercik/fta-check#readme",
"bugs": {
"url": "https://github.com/Jercik/fta-check/issues"
},
"type": "module",
"main": "./dist/cli.js",
"bin": {
"fta-check": "bin/fta-check"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"keywords": [
"typescript",
"analyzer",
"complexity",
"fta",
"code-quality",
"maintainability",
"halstead",
"cyclomatic-complexity"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=22.19.0"
},
"peerDependencies": {
"fta-cli": "^3.0.0"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"eslint-config-axkit": "^1.7.0",
"fta-check": "^1.5.2",
"fta-cli": "^3.0.0",
"knip": "^6.5.0",
"prettier": "3.8.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}