-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "tdesign-projects-action",
"type": "module",
"version": "0.0.3",
"private": true,
"packageManager": "pnpm@10.30.3",
"description": "Only for TDesign's project management automation ci",
"author": "TDesignOteam",
"license": "MIT",
"homepage": "https://github.com/TDesignOteam/tdesign-projects-action",
"repository": {
"type": "git",
"url": "git+https://github.com/TDesignOteam/tdesign-projects-action.git"
},
"bugs": {
"url": "https://github.com/TDesignOteam/tdesign-projects-action/issues"
},
"keywords": [
"actions"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "git submodule update --init --recursive",
"build": "tsdown",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@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"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}