-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 3.97 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 3.97 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "hyntx",
"version": "3.0.2",
"description": "CLI that analyzes Claude Code prompts and generates improvement suggestions",
"type": "module",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsup",
"build:debug": "SOURCE_MAP=true tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:e2e:watch": "vitest --config vitest.config.e2e.ts",
"test:all": "vitest run && vitest run --config vitest.config.e2e.ts",
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
"validate:models": "node scripts/validate-model-sync.mjs",
"size": "npm pack --dry-run 2>&1 | tail -1",
"prepare": "husky",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"keywords": [
"cli",
"claude",
"prompts",
"analysis",
"ai"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jmlweb/hyntx"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@eslint/js": "^9.39.2",
"@jmlweb/commitlint-config": "^3.0.1",
"@jmlweb/eslint-config-base": "^2.0.8",
"@jmlweb/prettier-config-base": "^1.0.6",
"@jmlweb/tsconfig-base": "^1.0.5",
"@jmlweb/tsup-config-base": "^1.1.4",
"@jmlweb/vitest-config": "^2.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/asciichart": "^1.5.8",
"@types/figlet": "^1.7.0",
"@types/node": "^25.0.3",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^4.0.16",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
},
"bin": {
"hyntx": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./api": {
"types": "./dist/api/index.d.ts",
"import": "./dist/api/index.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"sideEffects": false,
"lint-staged": {
"*.ts": [
"bash -c 'if [[ \"$1\" != tests/* && \"$1\" != *.config.ts ]]; then eslint --fix \"$1\"; fi' --",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.{js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"asciichart": "^1.5.25",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"date-fns": "^4.1.0",
"figlet": "^1.9.4",
"glob": "^13.0.0",
"ml-distance": "^4.0.1",
"ml-kmeans": "^7.0.0",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"simple-statistics": "^7.8.8",
"zod": "^4.3.4"
},
"pnpm": {
"overrides": {
"hono": ">=4.12.4",
"lodash": ">=4.17.23",
"lodash-es": ">=4.17.23",
"undici": ">=7.24.0",
"@hono/node-server": ">=1.19.10",
"@modelcontextprotocol/sdk": ">=1.26.0",
"@isaacs/brace-expansion": ">=5.0.1",
"minimatch": ">=10.2.3",
"rollup": ">=4.59.0",
"flatted": ">=3.4.2",
"qs": ">=6.14.2"
}
}
}