-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "multi-platform-posts-action",
"type": "module",
"version": "0.3.0",
"packageManager": "[email protected]",
"description": "Render multi-platform Posts in readme",
"author": "https://github.com/baozouai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/baozouai/multi-platform-posts-action"
},
"keywords": [
"GitHub",
"Actions",
"readme post",
"juejin",
"zhihu",
"segmentfault"
],
"main": "lib/index.js",
"scripts": {
"run-res": "pnpm run build && node lib/index.js",
"watch": "ncc build src/index.ts --watch",
"build": "ncc build src/index.ts --license LICENSE --minify --out lib",
"release": "bumpp",
"prepare": "husky install",
"lint": "eslint . --fix"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@antfu/eslint-config": "^0.38.6",
"@vercel/ncc": "^0.36.1",
"cheerio": "1.0.0-rc.12",
"fs-extra": "^11.1.1",
"superagent": "^8.0.9"
},
"devDependencies": {
"@types/node": "^20.1.3",
"@types/superagent": "^4.1.17",
"bumpp": "8.2.0",
"husky": "^8.0.3"
}
}