-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "patchslim",
"version": "0.1.0",
"description": "Test-guided minimization for Git diffs.",
"type": "module",
"bin": {
"patchslim": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/cli.ts --format esm --clean",
"dev": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "pnpm format:check && pnpm typecheck && pnpm test && pnpm build",
"prepack": "npm run build",
"release:check": "pnpm check && pnpm audit --prod && npm pack --dry-run"
},
"engines": {
"node": ">=20"
},
"keywords": [
"git",
"diff",
"delta-debugging",
"testing",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Apex-Studio-He/patchslim.git"
},
"bugs": {
"url": "https://github.com/Apex-Studio-He/patchslim/issues"
},
"homepage": "https://github.com/Apex-Studio-He/patchslim#readme",
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"minimatch": "^10.2.6",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.34.5"
}