-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "patchlift",
"version": "0.3.0",
"description": "Lift your local Yarn patches upstream",
"keywords": [],
"homepage": "https://github.com/turadg/patchlift#readme",
"bugs": {
"url": "https://github.com/turadg/patchlift/issues"
},
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/turadg/patchlift.git"
},
"bin": {
"patchlift": "dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "vp pack",
"dev": "tsx src/index.ts",
"test": "vp test run",
"lint": "tsc --noEmit",
"prepare": "vp config",
"prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"commander": "^14.0.3",
"open": "^11.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^22.19.17",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "pnpm@10.33.0"
}