codesnap-analyzer
Version:
Create comprehensive snapshots of your codebase with token counting for LLMs
86 lines • 2.38 kB
JSON
{
"name": "codesnap-analyzer",
"version": "1.0.8",
"description": "Create comprehensive snapshots of your codebase with token counting for LLMs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codesnap": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/codesnap-analyzer.git"
},
"keywords": [
"code-analysis",
"token-counting",
"llm",
"gpt",
"claude",
"codebase-analysis",
"code-scanner",
"static-analysis",
"token-counter"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/codesnap-analyzer/issues"
},
"homepage": "https://github.com/yourusername/codesnap-analyzer#readme",
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/typescript-estree": "^5.0.0",
"@typescript-eslint/visitor-keys": "^8.19.0",
"commander": "^11.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"fs-extra": "^11.1.1",
"minimatch": "^5.1.6"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.14",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.19.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"preversion": "pnpm lint",
"version": "pnpm format && git add -A src",
"postversion": "git push && git push --tags",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest --config jestconfig.json",
"bump": "pnpm version patch --no-git-tag-version",
"release": "pnpm publish --access public"
}
}