-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.57 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.57 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "github-actions-updater",
"version": "1.2.0",
"description": "ncu for GitHub Actions — scans .github/workflows for outdated remote uses: references and reports or updates them, with a polished colorful CLI.",
"keywords": [
"github-actions",
"workflow",
"updater",
"ncu",
"dependencies",
"cli",
"version-check",
"actions"
],
"license": "MIT",
"author": "Yannic Labonte",
"repository": {
"type": "git",
"url": "git+https://github.com/ylabonte/github-actions-updater.git"
},
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"ghau": "./dist/cli.js"
},
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli.js",
"dev": "cross-env NODE_OPTIONS=--no-deprecation tsx src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "pnpm run docs:gen-cli && vitepress build docs",
"docs:gen-cli": "cross-env NODE_OPTIONS=--no-deprecation tsx docs/scripts/gen-cli-ref.ts",
"prepublishOnly": "pnpm run build",
"release": "changeset publish"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"@commander-js/extra-typings": "^14.0.0",
"@octokit/rest": "^22.0.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.1",
"env-paths": "^4.0.0",
"ora": "^9.4.0",
"picocolors": "^1.1.1",
"semver": "^7.8.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.7.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^4.1.6",
"cross-env": "^10.1.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-vitest": "^0.5.4",
"memfs": "^4.57.2",
"nock": "^14.0.15",
"prettier": "^3.8.3",
"tsx": "^4.22.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13",
"vitepress": "^1.6.4",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@11.1.3"
}