Files
repomix/package.json
Kazuki Yamada 398047b1a6 feat(rename): Rename to repomix
# Conflicts:
#	src/core/packager.ts
#	src/core/security/securityCheck.ts
#	src/shared/processConcurrency.ts

# Conflicts:
#	package-lock.json
#	package.json
2024-11-02 15:26:32 +09:00

86 lines
2.4 KiB
JSON

{
"name": "repomix",
"version": "0.2.0",
"description": "A tool to pack repository contents to single file for AI consumption",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts"
}
},
"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",
"cli-run": "npm run build && node --trace-warnings bin/repomix",
"npm-publish": "npm run lint && npm run test-coverage && npm run build && npm publish",
"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"
},
"type": "module",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@secretlint/core": "^9.0.0",
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"cli-spinners": "^2.9.2",
"commander": "^12.1.0",
"globby": "^14.0.2",
"handlebars": "^4.7.8",
"iconv-lite": "^0.6.3",
"istextorbinary": "^9.5.0",
"jschardet": "^3.1.4",
"log-update": "^6.1.0",
"p-map": "^7.0.2",
"picocolors": "^1.1.1",
"strip-comments": "^2.0.1",
"tiktoken": "^1.0.17"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.17.1",
"@types/strip-comments": "^2.0.4",
"@vitest/coverage-v8": "^2.1.4",
"rimraf": "^6.0.1",
"secretlint": "^9.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.22"
}
}