Files
repomix/package.json
2024-07-23 12:44:01 +09:00

89 lines
2.6 KiB
JSON

{
"name": "repopack",
"version": "0.1.7",
"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/repopack.cjs",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.build.json --sourceMap --declaration",
"lint": "eslint ./src ./tests --max-warnings 0 --cache --fix && tsc --noEmit && secretlint **/*",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"cli-run": "npm run build && node --trace-warnings bin/repopack",
"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/repopack.git"
},
"bugs": {
"url": "https://github.com/yamadashy/repopack/issues"
},
"author": "Kazuki Yamada <koukun0120@gmail.com>",
"homepage": "https://github.com/yamadashy/repopack",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"dependencies": {
"@secretlint/core": "^8.2.4",
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
"cli-spinners": "^2.9.2",
"commander": "^7.1.0",
"iconv-lite": "^0.6.3",
"ignore": "^5.2.0",
"is-binary-path": "^2.1.0",
"jschardet": "^3.1.3",
"log-update": "^6.0.0",
"picocolors": "^1.0.1",
"strip-comments": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint": "~8.56.10",
"@types/eslint-config-prettier": "~6.11.3",
"@types/eslint__js": "~8.42.3",
"@types/node": "^20.14.10",
"@types/strip-comments": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"rimraf": "^5.0.7",
"secretlint": "^8.2.4",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^2.0.2"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.0.0"
}
}