Files
cachix-action/package.json
2023-09-06 11:37:40 +00:00

39 lines
875 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",
"which": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@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"
}
}