Files
files-hash/package.json
ren 4174e14517
Some checks failed
CI / 测试 (push) Failing after 58s
feat: 更新项目构建脚本
2025-10-21 11:52:04 +08:00

42 lines
1003 B
JSON

{
"name": "files-hash-action",
"version": "0.1.1",
"description": "A lightweight Gitea Action to calculate hash of multiple files",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm run lint && pnpm run format:check",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^61.1.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"vitest": "^1.0.0"
},
"keywords": [
"github-action",
"hash",
"files",
"checksum",
"md5",
"sha1",
"sha256",
"sha512"
],
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=20",
"pnpm": ">=10"
}
}