2023-07-11 17:34:16 +00:00
|
|
|
{
|
|
|
|
"name": "nix-installer-action",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "You can use [`nix-installer`](https://github.com/DeterminateSystems/nix-installer) as a Github action:",
|
2024-04-11 15:58:56 +00:00
|
|
|
"main": "./dist/main.js",
|
|
|
|
"types": "./dist/main.d.ts",
|
|
|
|
"type": "module",
|
2023-07-11 17:34:16 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2024-04-11 15:58:56 +00:00
|
|
|
"format": "prettier --write .",
|
2023-07-11 17:34:16 +00:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2024-04-11 15:58:56 +00:00
|
|
|
"package": "ncc build",
|
|
|
|
"all": "pnpm run format && pnpm run lint && pnpm run build && pnpm run package"
|
2023-07-11 17:34:16 +00:00
|
|
|
},
|
|
|
|
"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": {
|
2024-04-11 15:58:56 +00:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-11-02 17:48:10 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-07-12 17:24:35 +00:00
|
|
|
"@actions/github": "^5.1.1",
|
2023-11-02 17:48:10 +00:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2024-04-12 19:31:59 +00:00
|
|
|
"detsys-ts": "github:DeterminateSystems/detsys-ts",
|
2023-10-18 10:33:33 +00:00
|
|
|
"fetch-retry": "^5.0.6",
|
2023-07-12 17:24:35 +00:00
|
|
|
"string-argv": "^0.3.2"
|
2023-07-11 17:34:16 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-11 15:58:56 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
2024-05-02 13:52:54 +00:00
|
|
|
"@types/node": "^20.12.8",
|
2024-04-11 15:58:56 +00:00
|
|
|
"@types/uuid": "^9.0.8",
|
2024-05-02 13:52:54 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
2024-04-11 15:58:56 +00:00
|
|
|
"@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"
|
2023-07-11 17:34:16 +00:00
|
|
|
}
|
|
|
|
}
|