-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
package.json
File metadata and controls
83 lines (83 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
80
81
82
83
{
"name": "release-it-action",
"version": "0.4.0",
"description": "Runs release-it as a GitHub Action, with handling for semantic releases and protected branches. 📤",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaKGoldberg/release-it-action.git"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"build:release": "ncc build src/action/index.ts -o dist",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@actions/core": "^2.0.0",
"@actions/github": "^6.0.1",
"@types/node": "^24.10.0",
"execa": "^9.6.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
"@eslint/js": "9.39.1",
"@octokit/types": "16.0.0",
"@release-it/conventional-changelog": "10.0.1",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/node": "24.10.0",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.0.8",
"@vitest/eslint-plugin": "1.6.1",
"console-fail-test": "0.6.0",
"create-typescript-app": "2.58.0",
"cspell": "9.4.0",
"eslint": "9.39.1",
"eslint-plugin-jsdoc": "61.5.0",
"eslint-plugin-jsonc": "2.21.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-package-json": "0.65.3",
"eslint-plugin-perfectionist": "5.1.0",
"eslint-plugin-regexp": "2.10.0",
"eslint-plugin-yml": "1.19.0",
"husky": "9.1.7",
"knip": "5.78.0",
"lint-staged": "16.2.6",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.47.0",
"prettier": "3.7.0",
"prettier-plugin-curly": "0.4.0",
"prettier-plugin-packagejson": "2.5.19",
"prettier-plugin-sh": "0.18.0",
"release-it": "19.2.0",
"sentences-per-line": "0.3.0",
"should-semantic-release": "0.3.5",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0",
"vitest": "4.0.8"
},
"packageManager": "pnpm@10.26.0",
"engines": {
"node": ">=20"
}
}