-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "git-regress",
"version": "0.1.0",
"description": "Detects semantic regressions across PRs that git's merge conflict detection misses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"git-regress": "dist/index.js"
},
"scripts": {
"build": "tsc && ncc build dist/index.js -o dist --source-map && cp node_modules/web-tree-sitter/tree-sitter.wasm dist/ && cp node_modules/tree-sitter-wasms/out/tree-sitter-typescript.wasm dist/ && cp node_modules/tree-sitter-wasms/out/tree-sitter-tsx.wasm dist/",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"prepublishOnly": "bun run build"
},
"keywords": [
"git",
"regression",
"semantic",
"ast",
"tree-sitter",
"github-action",
"pull-request"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@actions/cache": "4.0.5",
"@actions/core": "1.11.1",
"@actions/github": "6.0.1",
"@octokit/rest": "^22.0.1",
"commander": "^14.0.3",
"get-tsconfig": "^4.13.7",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "0.24.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/node": "^22.0.0",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"trustedDependencies": [
"tree-sitter-javascript"
]
}