1
0
Fork 0
mirror of https://github.com/cachix/cachix-action.git synced 2025-06-07 22:57:01 +09:00
cachix-action/package.json
2025-03-10 15:24:48 +01:00

38 lines
835 B
JSON

{
"name": "cachix-action",
"version": "1.0.0",
"private": true,
"description": "nix-build with the help of caching to Cachix",
"exports": {
".": "dist/index.js"
},
"scripts": {
"build": "ncc build -o dist src/index.ts --source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cachix/cachix-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Domen Kožar",
"license": "ASL2",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"semver": "^7.7.1",
"tail": "^2.2.6",
"which": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/semver": "^7.5.8",
"@types/tail": "^2.2.3",
"@types/which": "^3.0.4",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.8.2"
}
}