-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 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
80
81
82
{
"name": "inup",
"version": "1.5.4",
"description": "Interactive dependency upgrader for npm, yarn, pnpm & bun. Zero-config, monorepo-ready. Upgrade-interactive for every package manager.",
"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": [
"upgrade-interactive",
"interactive",
"dependency-management",
"outdated",
"upgrade",
"update",
"npm",
"yarn",
"pnpm",
"bun",
"monorepo",
"workspace",
"cli",
"vulnerability",
"audit",
"changelog",
"package-manager",
"dependencies",
"semver",
"ncu"
],
"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/node": "^24.12.2",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.4",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"env-paths": "^4.0.0",
"nanospinner": "^1.2.2",
"semver": "^7.7.4",
"undici": "^8.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}