-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.28 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
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": "publish-blog-post",
"description": "A GitHub Action to publish markdown as blog post in Dev.to and Medium",
"version": "1.0.0",
"author": "Thiago Mendonca",
"private": true,
"type": "module",
"homepage": "https://github.com/trystan2k/publish-blog-post#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/trystan2k/publish-blog-post"
},
"bugs": {
"url": "https://github.com/trystan2k/publish-blog-post/issues"
},
"keywords": [
"github",
"action",
"blog",
"dev.to",
"medium"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"build": "ncc build src/index.ts -o dist",
"test": "vitest run --changed origin/main --coverage.all=false",
"test:watch": "vitest watch",
"test:all": "vitest run",
"complete-check": "npm run typecheck && npm run lint && npm run test:all && npm run build",
"prepare": "husky || true",
"cz": "git-cz",
"push": "git push && git push --tags",
"release": "commit-and-tag-version",
"release:as": "commit-and-tag-version --release-as"
},
"license": "MIT",
"dependencies": {
"@actions/core": "~1.11.1",
"@actions/exec": "~1.1.1",
"@actions/github": "~6.0.0",
"find": "~0.3.0",
"gray-matter": "~4.0.3",
"ky": "~1.7.2"
},
"devDependencies": {
"@commitlint/cli": "~19.5.0",
"@commitlint/config-conventional": "~19.5.0",
"@commitlint/cz-commitlint": "~19.5.0",
"@eslint/compat": "~1.2.1",
"@eslint/js": "~9.13.0",
"@types/find": "~0.2.4",
"@types/node": "~22.8.1",
"@vercel/ncc": "~0.38.2",
"@vitest/coverage-v8": "~2.1.3",
"commit-and-tag-version": "~12.5.0",
"commitizen": "~4.3.1",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unused-imports": "~4.1.4",
"globals": "~15.11.0",
"husky": "~9.1.6",
"lint-staged": "~15.2.10",
"prettier": "~3.3.3",
"ts-node": "~10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "~8.11.0",
"vitest": "~2.1.3"
}
}