-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "flow-pilot-action",
"type": "module",
"private": true,
"packageManager": "pnpm@10.30.3",
"description": "",
"author": "tdesign",
"license": "MIT",
"homepage": "https://github.com/TDesignOteam/flow-pilot-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TDesignOteam/flow-pilot-action.git"
},
"bugs": {
"url": "https://github.com/TDesignOteam/flow-pilot-action/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:update": "vitest run -u",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@manypkg/get-packages": "^3.1.0",
"camelcase": "^9.0.0",
"glob": "^13.0.6",
"marked": "^17.0.3",
"tencentcloud-sdk-nodejs-hunyuan": "^4.1.188"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@types/node": "^24.11.0",
"eslint": "^10.0.2",
"eslint-plugin-format": "^2.0.1",
"lint-staged": "^16.3.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}