gather-ts
Version:
A powerful code analysis and packaging tool designed for creating AI-friendly code representations for javascript and typescript projects.
114 lines (113 loc) • 2.92 kB
JSON
{
"name": "gather-ts",
"version": "0.1.3",
"description": "A powerful code analysis and packaging tool designed for creating AI-friendly code representations for javascript and typescript projects.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"gather-ts": "dist/src/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"start": "node -r ./dist/src/register.js dist/src/cli.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"docs": "typedoc",
"audit:fix": "npm audit fix",
"build:docs": "typedoc"
},
"keywords": [
"code-analysis",
"dependency-analysis",
"typescript",
"ai",
"code-review",
"static-analysis",
"dependency-graph",
"code-visualization",
"documentation",
"development-tools"
],
"author": {
"name": "Andrew Robb",
"url": "https://github.com/usexr"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/usexr/gather-ts.git"
},
"bugs": {
"url": "https://github.com/usexr/gather-ts/issues"
},
"homepage": "https://github.com/usexr/gather-ts#readme",
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"madge": "^6.1.0",
"micromatch": "^4.0.5",
"module-alias": "^2.2.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@types/jest": "^29.5.5",
"@types/madge": "^5.0.0",
"@types/micromatch": "^4.0.2",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "7.37.4",
"globals": "15.14.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.27.1",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.2.2",
"typescript-eslint": "8.23.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}