forked from foxundermoon/feishu-action
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "wechat-work-action",
"version": "1.0.0",
"private": false,
"description": "wechat work message action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.{ts,yml,json,md}",
"format-check": "prettier --check **/*.{ts,yml,json,md}",
"lint": "eslint src/**/*.ts",
"pack": "ncc build src/main.ts -o dist",
"test": "jest",
"all": "yarn run build && yarn run format && yarn run pack && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxundermoon/feishu-action.git"
},
"keywords": [
"feishu",
"feishu bot",
"custom bot",
"messager",
"message",
"actions"
],
"author": "foxundermoon",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"got": "^11.8.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"ts-jest": "^29.2.5"
}
}