notes-kv/package.json

27 lines
763 B
JSON

{
"name": "notes-kv",
"version": "0.1.0",
"description": "An actions add-on to save Key/Value pairs to git notes",
"main": "dist/index.js",
"scripts": {
"package": "npx esbuild src/index.ts --bundle --platform=node --target=node20 --outdir=dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "AllSpice Inc. <maintainers@allspice.io>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.14.10",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"typescript": "^5.5.3"
}
}