nix-installer-action/package.json

51 lines
1.6 KiB
JSON
Raw Normal View History

2023-07-11 20:34:16 +03:00
{
"name": "nix-installer-action",
"version": "1.0.0",
2024-05-02 17:05:47 +03:00
"description": "You can use [`nix-installer`](https://github.com/DeterminateSystems/nix-installer) as a Github Action:",
2024-05-02 22:35:58 +03:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
2023-07-11 20:34:16 +03:00
"scripts": {
2024-05-02 22:35:58 +03:00
"build": "tsup",
"format": "prettier --write .",
2024-05-02 16:56:42 +03:00
"check-fmt": "prettier --check .",
2023-07-11 20:34:16 +03:00
"lint": "eslint src/**/*.ts",
"package": "ncc build",
"all": "pnpm run format && pnpm run lint && pnpm run build && pnpm run package"
2023-07-11 20:34:16 +03: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": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
2023-07-12 20:24:35 +03:00
"@actions/github": "^5.1.1",
2024-06-04 00:18:28 +03:00
"detsys-ts": "github:DeterminateSystems/detsys-ts",
2024-06-04 00:11:35 +03:00
"got": "^14.3.0",
"string-argv": "^0.3.2"
2023-07-11 20:34:16 +03:00
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2024-06-04 00:11:35 +03:00
"@types/node": "^20.14.0",
"@types/uuid": "^9.0.8",
2024-06-04 00:11:35 +03:00
"@typescript-eslint/eslint-plugin": "^7.12.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",
2024-06-04 00:11:35 +03:00
"prettier": "^3.3.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
2023-07-11 20:34:16 +03:00
}
}