mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
117 lines
3.5 KiB
JSON
117 lines
3.5 KiB
JSON
{
|
|
"name": "repomix",
|
|
"version": "0.3.9",
|
|
"description": "A tool to pack repository contents to single file for AI consumption",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"default": "./lib/index.js"
|
|
}
|
|
},
|
|
"bin": "./bin/repomix.cjs",
|
|
"scripts": {
|
|
"clean": "rimraf lib",
|
|
"build": "npm run clean && tsc -p tsconfig.build.json --sourceMap --declaration",
|
|
"lint": "npm run lint-biome && npm run lint-ts && npm run lint-secretlint",
|
|
"lint-biome": "biome check --write",
|
|
"lint-ts": "tsc --noEmit",
|
|
"lint-secretlint": "secretlint \"**/*\" --secretlintignore .gitignore",
|
|
"test": "vitest",
|
|
"test-coverage": "vitest run --coverage",
|
|
"repomix": "npm run build && node --trace-warnings bin/repomix.cjs",
|
|
"repomix-src": "npm run repomix -- --include 'src,tests'",
|
|
"repomix-website": "npm run repomix -- --include 'website'",
|
|
"website": "docker compose -f website/compose.yml up --build",
|
|
"website-generate-schema": "tsx website/client/scripts/generateSchema.ts",
|
|
"npm-publish": "npm run npm-publish-check-branch && npm run lint && npm run test-coverage && npm run build && npm publish",
|
|
"npm-publish-check-branch": "git branch --show-current | grep -q '^main$' || (echo 'Release is only allowed from the main branch' && exit 1)",
|
|
"npm-release-patch": "npm version patch && npm run npm-publish",
|
|
"npm-release-minor": "npm version minor && npm run npm-publish",
|
|
"npm-release-prerelease": "npm version prerelease && npm run npm-publish"
|
|
},
|
|
"keywords": [
|
|
"repository",
|
|
"generative-ai",
|
|
"ai",
|
|
"llm",
|
|
"source-code",
|
|
"code-analysis",
|
|
"codebase-packer",
|
|
"development-tool",
|
|
"ai-assistant",
|
|
"code-review"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/yamadashy/repomix.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yamadashy/repomix/issues"
|
|
},
|
|
"author": "Kazuki Yamada <koukun0120@gmail.com>",
|
|
"homepage": "https://github.com/yamadashy/repomix",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"lib/",
|
|
"bin/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.10.1",
|
|
"@modelcontextprotocol/sdk": "^1.11.0",
|
|
"@secretlint/core": "^9.3.1",
|
|
"@secretlint/secretlint-rule-preset-recommend": "^9.3.1",
|
|
"cli-spinners": "^2.9.2",
|
|
"clipboardy": "^4.0.0",
|
|
"commander": "^14.0.0",
|
|
"fast-xml-parser": "^5.2.0",
|
|
"git-url-parse": "^16.1.0",
|
|
"globby": "^14.1.0",
|
|
"handlebars": "^4.7.8",
|
|
"iconv-lite": "^0.6.3",
|
|
"istextorbinary": "^9.5.0",
|
|
"jschardet": "^3.1.4",
|
|
"json5": "^2.2.3",
|
|
"log-update": "^6.1.0",
|
|
"minimatch": "^10.0.1",
|
|
"picocolors": "^1.1.1",
|
|
"piscina": "^4.9.2",
|
|
"strip-comments": "^2.0.1",
|
|
"strip-json-comments": "^5.0.1",
|
|
"tiktoken": "^1.0.20",
|
|
"tree-sitter-wasms": "^0.1.12",
|
|
"web-tree-sitter": "^0.24.7",
|
|
"zod": "^3.24.3"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@types/node": "^22.14.1",
|
|
"@types/strip-comments": "^2.0.4",
|
|
"@vitest/coverage-v8": "^3.1.1",
|
|
"rimraf": "^6.0.1",
|
|
"secretlint": "^9.3.1",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^5.4.18",
|
|
"vitest": "^3.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"yarn": ">=1.22.22"
|
|
}
|
|
}
|