forked from stylelint/changelog-to-github-release-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 KB
/
package.json
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
{
"name": "changelog-to-github-release-action",
"version": "0.1.2",
"private": true,
"description": "GitHub Action to convert CHANGELOG to GitHub Release",
"repository": "stylelint/changelog-to-github-release-action",
"license": "MIT",
"author": "Stylelint",
"type": "module",
"scripts": {
"prepare": "husky",
"build": "ncc build src/main.js",
"build-check": "git diff --exit-code --quiet -- dist/",
"format": "prettier --write --cache .",
"lint": "npm-run-all --parallel --continue-on-error lint:*",
"lint:formatting": "prettier . --check --cache",
"lint:md": "remark . --quiet --frail",
"lint:types": "tsc",
"pretest": "npm run lint",
"test": "node --test && npm run build && npm run build-check",
"watch": "node --test --watch"
},
"lint-staged": {
"*.{js,json,md,ts,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"remark": "^15.0.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^3.0.0",
"@stylelint/remark-preset": "^5.1.1",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/mdast": "^4.0.4",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.1",
"remark-cli": "^12.0.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}