-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "tdesign-pr-trigger-action",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.33.2",
"description": "",
"author": "tdesign",
"license": "MIT",
"homepage": "https://github.com/TDesignOteam/tdesign-pr-comment-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TDesignOteam/tdesign-pr-comment-action.git"
},
"bugs": {
"url": "https://github.com/TDesignOteam/tdesign-pr-comment-action/issues"
},
"main": "src/index.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:update": "vitest run -u",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@pnpm/workspace.manifest-writer": "^1001.3.1",
"@pnpm/workspace.read-manifest": "^1000.3.1",
"node-cnb": "^1.29.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@types/node": "^24.12.2",
"@typescript/native-preview": "7.0.0-dev.20260428.1",
"eslint": "^10.2.1",
"lint-staged": "^16.4.0",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}