mirror of
https://github.com/stoatchat/action-git-town.git
synced 2026-07-01 21:44:53 -04:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@git-town/action",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"engineStrict": true,
|
|
"scripts": {
|
|
"dev": "npm run build -- --watch",
|
|
"build": "esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=node20",
|
|
"test": "vitest",
|
|
"test:ci": "vitest run",
|
|
"lint:eslint": "eslint src --max-warnings=0",
|
|
"lint:ec": "ec -config .editorconfig-checker",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"graphology": "^0.25.4",
|
|
"graphology-dag": "^0.4.1",
|
|
"graphology-traversal": "^0.3.1",
|
|
"remark": "^15.0.1",
|
|
"remark-gfm": "^4.0.0",
|
|
"toml": "^3.0.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@octokit/types": "^13.6.2",
|
|
"@types/mdast": "^4.0.4",
|
|
"@types/node": "20.19.14",
|
|
"@vercel/style-guide": "^5.2.0",
|
|
"editorconfig-checker": "5.1.8",
|
|
"esbuild": "0.25.9",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "15.2.7",
|
|
"prettier": "3.3.2",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|