Files
2024-01-09 21:37:04 +00:00

43 lines
981 B
JSON

{
"name": "cachix-action",
"version": "1.0.0",
"private": true,
"description": "nix-build with the help of caching to Cachix",
"main": "dist/main/index.js",
"scripts": {
"build": "tsc && ncc build -o dist/main src/main.ts",
"test": "echo NO TEST"
},
"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": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/semver": "^7.5.4",
"@types/tail": "^2.2.1",
"@types/which": "^3.0.0",
"@vercel/ncc": "^0.36.1",
"jest": "^29.6.2",
"jest-circus": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}