forked from yamadashy/repomix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "repopack",
"version": "0.1.43",
"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": "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/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 <[email protected]>",
"homepage": "https://github.com/yamadashy/repopack",
"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.16.13",
"@types/strip-comments": "^2.0.4",
"@vitest/coverage-v8": "^2.1.3",
"rimraf": "^6.0.1",
"secretlint": "^9.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.22"
}
}