-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.37 KB
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": "@stefanvictora/revpack",
"version": "0.4.0",
"description": "Prepare GitHub PRs and GitLab MRs for coding agents with local review bundles.",
"author": {
"name": "Stefan Victora",
"url": "https://github.com/stefanvictora"
},
"type": "module",
"bin": {
"revpack": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:mutation": "stryker run",
"test:mutation:file": "stryker run --mutate",
"test:mutation:dry": "stryker run --dryRunOnly",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rimraf dist",
"pack:dry": "npm pack --dry-run",
"release:check": "npm run clean && npm run build && npm test && npm run lint && npm run format:check && npm pack --dry-run",
"prepack": "npm run clean && npm run build",
"prepublishOnly": "npm test && npm run lint && npm run format:check && npm run build",
"eval:export-code-review-benchmark": "tsx scripts/export-code-review-benchmark.ts"
},
"files": [
"dist",
"templates",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=22.13.0"
},
"keywords": [
"code-review",
"ai-code-review",
"pull-request",
"merge-request",
"github",
"gitlab",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanvictora/revpack.git"
},
"bugs": {
"url": "https://github.com/stefanvictora/revpack/issues"
},
"homepage": "https://github.com/stefanvictora/revpack#readme",
"packageManager": "npm@11.14.1",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^20.19.39",
"@vitest/eslint-plugin": "^1.6.17",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.6"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"handlebars": "^4.7.9",
"undici": "^6.21.2",
"zod": "^3.22.4"
}
}