Files
cachix-action/package.json
Sander 6212f62921 dev: restructure build
- Remove main/index indirection
- Bump module resolution to nodenext
- Enable source map
2025-01-03 10:12:46 +04:00

39 lines
834 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.10.0",
"@actions/exec": "^1.1.1",
"semver": "^7.5.4",
"tail": "^2.2.6",
"which": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.10.4",
"@types/semver": "^7.5.4",
"@types/tail": "^2.2.1",
"@types/which": "^3.0.0",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.7.2"
}
}