5d2215c1e1
* Rebase on top of detsys-ts for abstracting over install.determinate.systems * Support the legacy nix-installer-xxx source prefs * Document source-* opts * Update deps * cut duration so it doesn't take forever * Move the complete step into a finally block * Test a busted run * come on ... * update to the main detsys-ts * Switch to the delegated execution model * throw an error to check behavior * Fixup lint errors * Drop the forced error
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "nix-installer-action",
|
|
"version": "1.0.0",
|
|
"description": "You can use [`nix-installer`](https://github.com/DeterminateSystems/nix-installer) as a Github action:",
|
|
"main": "./dist/main.js",
|
|
"types": "./dist/main.d.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build",
|
|
"all": "pnpm run format && pnpm run lint && pnpm run build && pnpm run package"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/DeterminateSystems/nix-installer-action.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/DeterminateSystems/nix-installer-action/issues"
|
|
},
|
|
"homepage": "https://github.com/DeterminateSystems/nix-installer-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"detsys-ts": "github:DeterminateSystems/detsys-ts#instrument-execution",
|
|
"fetch-retry": "^5.0.6",
|
|
"string-argv": "^0.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/node": "^20.12.7",
|
|
"@types/uuid": "^9.0.8",
|
|
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"prettier": "^3.2.5",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|