artifact-metadata
Version:
NodeJS module to store Issues and Pull Requests metadata in GitHub Artifacts.
42 lines (41 loc) • 1.28 kB
JSON
{
"name": "artifact-metadata",
"version": "0.0.16",
"description": "NodeJS module to store Issues and Pull Requests metadata in GitHub Artifacts.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "esbuild ./src/index.js --bundle --outdir=dist --platform=node --target=node20.0.0 --packages=bundle && tsc --declaration src/index.ts --emitDeclarationOnly --skipLibCheck --outDir ./dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn run build && yarn run format && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/artifact-metadata.git"
},
"keywords": [
"actions",
"node",
"issues",
"artifacts"
],
"author": "jamacku@redhat.com",
"license": "MIT",
"packageManager": "yarn@4.7.0",
"dependencies": {
"@actions/artifact": "^2.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.0.9",
"esbuild": "^0.25.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}