-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.55 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
{
"name": "publish-node-package-action",
"version": "2.2.2",
"description": "Publish a NodeJS package to NPM or GitHub Packages",
"scripts": {
"prepare": "husky install",
"lint": "eslint src/**/*.ts && tsc --project tsconfig.json --noEmit",
"test": "echo '未实现'",
"build": "NODE_ENV=production vite build"
},
"author": "云淡然 <[email protected]> (https://ydr.me)",
"homepage": "https://github.com/FrontEndDev-org/publish-node-package-action",
"repository": "https://github.com/FrontEndDev-org/publish-node-package-action",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/types": "^17.4.4",
"@types/node": "20",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.3.3",
"react-router-dom": "^6.25.1",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vitest": "^2.0.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"fast-glob": "^3.3.2"
}
}