-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.77 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
{
"name": "patchlab",
"version": "1.0.0",
"description": "Isolated sandbox laboratory for creating patches to optionally merge back to the source",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"patchlab": "dist/cli.js"
},
"files": [
"dist",
"documents",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"test": "node scripts/run-tests.mjs",
"test:unit": "vitest run --project unit",
"test:coverage": "vitest run --coverage",
"test:posix": "node scripts/test-posix.mjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json",
"typecheck:tests": "tsc -p tsconfig.tests.json",
"verify:pack": "node scripts/verify-npm-pack.mjs",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"audit": "npm audit --audit-level=high",
"verify:integration-cleanup": "node scripts/verify-integration-cleanup.mjs"
},
"keywords": [
"patch",
"sandbox",
"diff",
"code-generation"
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/Training-Datasmith/patchlab.git"
},
"bugs": {
"url": "https://github.com/Training-Datasmith/patchlab/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3",
"glob": "^13.0.6",
"picomatch": "^4.0.4",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/picomatch": "^4.0.3",
"@vitest/coverage-v8": "^4.1.8",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}