-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 KB
/
package.json
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
{
"name": "tdesign-changelog-action",
"version": "0.5.2",
"private": true,
"packageManager": "[email protected]",
"description": "自动生成 pr 日志",
"author": "tdesign",
"license": "MIT",
"homepage": "https://github.com/TDesignOteam/tdesign-changelog-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TDesignOteam/tdesign-changelog-action.git"
},
"bugs": {
"url": "https://github.com/TDesignOteam/tdesign-changelog-action/issues"
},
"main": "src/index.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"prebuild": "rimraf dist/* ",
"build": "ncc build --license license.txt",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:update": "vitest run -u",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@types/node": "^22.10.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}