-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "patchlane",
"version": "0.5.2",
"description": "CLI tool for maintaining forked repositories with custom patches",
"type": "module",
"bin": {
"patchlane": "./dist/cli.js"
},
"files": [
"dist/"
],
"engines": {
"node": ">=22"
},
"scripts": {
"artifacts:sync": "node --experimental-strip-types ./scripts/sync-skill-assets.ts",
"artifacts:check": "node --experimental-strip-types ./scripts/sync-skill-assets.ts --check",
"build": "npm run artifacts:sync && tsc -p tsconfig.json",
"changelog": "node --experimental-strip-types ./scripts/changelog.ts --print",
"changelog:raw": "node --experimental-strip-types ./scripts/raw-changelog.ts",
"release": "gh workflow run draft-release.yml",
"test": "npm run build && tsc -p tsconfig.test.json && vitest run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run artifacts:check"
},
"devDependencies": {
"@types/node": "^25.6.0",
"prettier": "^3.8.3",
"typescript": "^7.0.0",
"vitest": "^4.1.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adampoit/patchlane.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"cac": "^7.0.0",
"yaml": "^2.9.0"
}
}