attic-action/package.json

24 lines
620 B
JSON
Raw Permalink Normal View History

2023-07-18 14:17:42 +00:00
{
2023-07-19 02:51:10 +00:00
"name": "@ryanccn/attic-action",
"main": "dist/index.js",
"description": "Cache Nix derivations with attic",
"scripts": {
"build": "esbuild src/index.ts --outdir=dist --platform=node --format=cjs --bundle --minify-whitespace --minify-syntax",
"format": "prettier --write ."
},
"author": "Ryan Cao <hello@ryanccn.dev>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
2023-09-15 07:36:50 +00:00
"just-split": "^3.2.0"
2023-07-19 02:51:10 +00:00
},
"devDependencies": {
"@types/node": "^16.18.38",
"esbuild": "^0.18.14",
"prettier": "3.0.0",
"typescript": "^5.1.6"
},
2023-09-15 07:36:50 +00:00
"packageManager": "pnpm@8.7.5"
2023-07-18 14:17:42 +00:00
}