-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
{
"name": "inup",
"version": "1.4.12",
"description": "Interactive CLI tool for upgrading dependencies with ease. Auto-detects and works with npm, yarn, pnpm, and bun. Inspired by yarn upgrade-interactive. Supports monorepos, workspaces, and batch upgrades.",
"main": "dist/index.js",
"bin": {
"inup": "./dist/cli.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepare": "npm run build",
"link": "pnpm build && pnpm link --global",
"version:patch": "pnpm version patch && git push && git push --tags",
"version:minor": "pnpm version minor && git push && git push --tags",
"version:major": "pnpm version major && git push && git push --tags",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"demo:record": "bash docs/demo/record-demo.sh",
"demo:setup": "cd docs/demo-project && pnpm install",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"author": "Donfear",
"keywords": [
"npm",
"yarn",
"pnpm",
"bun",
"upgrade",
"interactive",
"cli",
"package-manager",
"dependency-management",
"yarn-upgrade-interactive",
"monorepo",
"workspace",
"batch-upgrade"
],
"license": "MIT",
"homepage": "https://github.com/donfear/inup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/donfear/inup.git"
},
"bugs": {
"url": "https://github.com/donfear/inup/issues"
},
"files": [
"dist/**/*.js",
"README.md"
],
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/keypress.js": "^2.1.3",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"env-paths": "^4.0.0",
"inquirer": "^13.3.2",
"keypress": "^0.2.1",
"nanospinner": "^1.2.2",
"semver": "^7.7.4",
"undici": "^7.24.4"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}