-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 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
59
60
61
62
{
"name": "@jaydenfyi/diffx",
"version": "0.0.1",
"description": "A CLI tool for generating filtered Git diffs/patches with GitHub PR support",
"keywords": [
"cli",
"diff",
"git",
"github",
"patch",
"pull-request"
],
"license": "MIT",
"author": "Jayden",
"bin": {
"diffx": "./dist/bin.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./bin": "./dist/bin.mjs",
"./package.json": "./package.json"
},
"scripts": {
"prepack": "bun run build",
"build": "tsdown",
"dev": "tsdown --watch",
"start": "node dist/bin.mjs",
"test": "vitest --exclude=\"**/e2e*.test.ts\"",
"test:e2e": "vitest tests/e2e/e2e.test.ts tests/e2e/e2e-git-parity.test.ts",
"test:all": "vitest",
"test:cov": "vitest --coverage --exclude=\"**/e2e*.test.ts\"",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"gunshi": "^0.27.5",
"minimatch": "^10.1.1",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vitest-mock-extended": "^3.1.0"
},
"engines": {
"node": ">=22.0.0"
}
}