magic-nix-cache-action/package.json

51 lines
1.5 KiB
JSON
Raw Normal View History

{
2024-04-12 01:21:15 +02:00
"name": "magic-nix-cache-action",
"version": "1.0.0",
"description": "",
2024-04-21 02:40:30 +02:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
2024-04-21 01:57:38 +02:00
"build": "tsup",
2024-04-12 01:21:15 +02:00
"format": "prettier --write .",
2024-04-21 19:17:24 +02:00
"check-fmt": "prettier --check .",
2024-04-12 01:21:15 +02:00
"lint": "eslint src/**/*.ts",
2024-04-21 18:47:38 +02:00
"package": "ncc build",
2024-04-12 01:21:15 +02:00
"all": "pnpm run format && pnpm run lint && pnpm run build && pnpm run package"
},
2024-04-12 01:21:15 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/DeterminateSystems/magic-nix-cache-action.git"
},
"keywords": [],
"author": "",
"license": "LGPL",
2024-04-12 01:21:15 +02:00
"bugs": {
"url": "https://github.com/DeterminateSystems/magic-nix-cache-action/issues"
},
"homepage": "https://github.com/DeterminateSystems/magic-nix-cache-action#readme",
"dependencies": {
2024-04-12 01:21:15 +02:00
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
2024-05-06 23:42:16 +02:00
"detsys-ts": "github:DeterminateSystems/detsys-ts#array-inputs",
2024-04-12 01:21:15 +02:00
"got": "^14.2.1",
"tail": "^2.2.6"
},
"devDependencies": {
2024-04-12 01:21:15 +02:00
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2024-05-06 23:42:16 +02:00
"@types/node": "^20.12.10",
2024-04-12 01:21:15 +02:00
"@types/tail": "^2.2.3",
"@types/uuid": "^9.0.8",
2024-05-06 16:59:14 +02:00
"@typescript-eslint/eslint-plugin": "^7.8.0",
2024-04-12 01:21:15 +02: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",
2024-04-21 01:57:38 +02:00
"tsup": "^8.0.2",
2024-04-12 01:21:15 +02:00
"typescript": "^5.4.5"
}
2024-05-06 19:04:53 +02:00
}