-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "flow-pilot-action",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"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",
"marked": "^17.0.5",
"tencentcloud-sdk-nodejs-hunyuan": "^4.1.188",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@types/node": "^24.12.0",
"eslint": "^10.1.0",
"nano-staged": "^0.9.0",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"*": "eslint --fix"
}
}