mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
Introduced new scripts in package.json for GitNexus analysis: - `gitnexus:refresh`: analyzes with embeddings and skills. - `gitnexus:full`: forces analysis with embeddings and skills. No production behavior changes. This enhances the development workflow for GitNexus users.
32 lines
927 B
JSON
32 lines
927 B
JSON
{
|
|
"name": "gitnexus-monorepo",
|
|
"private": true,
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"gitnexus:refresh": "gitnexus analyze --embeddings --skills",
|
|
"gitnexus:full": "gitnexus analyze --force --embeddings --skills"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
"@typescript-eslint/parser": "^8.57.2",
|
|
"eslint": "^9.39.4",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.0",
|
|
"prettier": "^3.8.0",
|
|
"prettier-plugin-tailwindcss": "^0.7.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{js,jsx,mjs,json,css,yml,yaml}": "prettier --write"
|
|
}
|
|
}
|