Files
wehub-resource-sync 719032b19f
Update Schema / Update configuration json schema (push) Has been cancelled
Memory Benchmark / Memory Test (Full Analysis) (push) Has been cancelled
CI Quality / Lint GitHub Actions (actionlint) (push) Has been cancelled
CI Quality / Lint GitHub Actions (zizmor) (push) Has been cancelled
CI Quality / Check typos (push) Has been cancelled
CI / Test coverage (push) Has been cancelled
CI / Test (22.x, windows-latest) (push) Has been cancelled
CI / Test (24.x, macos-latest) (push) Has been cancelled
CI / Test (24.x, ubuntu-latest) (push) Has been cancelled
CI / Test (24.x, windows-latest) (push) Has been cancelled
CI / Test (26.x, macos-latest) (push) Has been cancelled
CI / Test (26.x, ubuntu-latest) (push) Has been cancelled
CI / Test (26.x, windows-latest) (push) Has been cancelled
CI / Test with Bun (latest, macos-latest) (push) Has been cancelled
CI / Test with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Test with Bun (latest, windows-latest) (push) Has been cancelled
CI / Build and run (22.x, macos-latest) (push) Has been cancelled
CI / Build and run (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (22.x, windows-latest) (push) Has been cancelled
autofix.ci / autofix (push) Has been cancelled
CI Browser Extension / Lint Browser Extension (push) Has been cancelled
CI Browser Extension / Test Browser Extension (push) Has been cancelled
Memory Benchmark / Memory Test (push) Has been cancelled
CI Website / Lint Website Client (push) Has been cancelled
CI Website / Lint Website Server (push) Has been cancelled
CI Website / Test Website Server (push) Has been cancelled
CI Website / Bundle Website Server (push) Has been cancelled
CI / Lint Biome (push) Has been cancelled
CI / Lint oxlint (push) Has been cancelled
CI / Lint TypeScript (push) Has been cancelled
CI / Lint Secretlint (push) Has been cancelled
CI / Test (22.x, macos-latest) (push) Has been cancelled
CI / Test (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, macos-latest) (push) Has been cancelled
CI / Build and run (24.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, windows-latest) (push) Has been cancelled
CI / Build and run (26.x, macos-latest) (push) Has been cancelled
CI / Build and run (26.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (26.x, windows-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, macos-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Docker / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Docker / build (linux/arm/v7, ubuntu-24.04-arm) (push) Has been cancelled
Docker / build (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Docker / merge (push) Has been cancelled
Pack repository with Repomix / pack-repo (push) Has been cancelled
Performance Benchmark History / Benchmark (macos-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (ubuntu-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (windows-latest) (push) Has been cancelled
Performance Benchmark History / Store Results (push) Has been cancelled
Test Repomix Action / Test Node.js 22 (push) Has been cancelled
Test Repomix Action / Test Node.js 24 (push) Has been cancelled
Test Repomix Action / Test Node.js 26 (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:37 +08:00

132 lines
4.1 KiB
JSON

{
"name": "repomix",
"version": "1.16.1",
"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": {
"prepare": "npm run build",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"build-bun": "bun run build",
"lint": "node --run lint-biome && node --run lint-oxlint && node --run lint-ts && node --run lint-secretlint",
"lint-biome": "biome check --write",
"lint-oxlint": "oxlint --fix",
"lint-ts": "tsgo --noEmit",
"lint-secretlint": "secretlint \"**/*\" --secretlintignore .gitignore",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"repomix": "node --run build && node --enable-source-maps --trace-warnings bin/repomix.cjs",
"repomix-src": "node --run repomix -- --include 'src,tests'",
"repomix-website": "node --run repomix -- --include 'website'",
"time-node": "node --run build && time node bin/repomix.cjs",
"time-bun": "bun run build && time bun bin/repomix.cjs",
"bench": "node --run build && hyperfine --warmup 2 --runs 10 'node bin/repomix.cjs'",
"bench:cores": "node --run build && bash scripts/bench-cores.sh",
"memory-check": "node --run repomix -- --verbose | grep Memory",
"memory-check-one-file": "node --run repomix -- --verbose --include 'package.json' | grep Memory",
"website": "docker compose -f website/compose.yml build --no-cache && docker compose -f website/compose.yml up",
"website-bundle": "docker compose -f website/compose.bundle.yml build --no-cache && docker compose -f website/compose.bundle.yml up",
"website-generate-schema": "tsx website/client/scripts/generateSchema.ts",
"pinact-run": "pinact run",
"pinact-check": "pinact run --check"
},
"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.11.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@repomix/strip-comments": "^2.4.2",
"@repomix/tree-sitter-wasms": "^0.1.17",
"@secretlint/core": "^13.0.2",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"chokidar": "^5.0.0",
"commander": "^15.0.0",
"fast-xml-builder": "^1.2.1",
"git-url-parse": "^16.1.0",
"globby": "^16.2.0",
"gpt-tokenizer": "^3.4.0",
"handlebars": "^4.7.9",
"iconv-lite": "^0.7.0",
"is-binary-path": "^3.0.0",
"isbinaryfile": "^5.0.2",
"jiti": "^2.7.0",
"jschardet": "^3.1.4",
"json5": "^2.2.3",
"minimatch": "^10.2.5",
"picocolors": "^1.1.1",
"picospinner": "^3.0.0",
"tar": "^7.5.19",
"tinyclip": "^0.1.15",
"tinypool": "^2.1.0",
"valibot": "^1.4.2",
"web-tree-sitter": "^0.26.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@secretlint/types": "^13.0.2",
"@types/node": "^24.13.2",
"@types/strip-comments": "^2.0.4",
"@typescript/native-preview": "^7.0.0-dev.20260705.1",
"@valibot/to-json-schema": "^1.7.1",
"@vitest/coverage-v8": "^4.1.9",
"@xmldom/xmldom": "^0.9.9",
"git-up": "^8.1.1",
"oxlint": "^1.72.0",
"rimraf": "^6.1.3",
"secretlint": "^13.0.2",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.22"
}
}