Files
setup-pixi/package.json
T

51 lines
1.3 KiB
JSON
Raw Normal View History

2023-09-03 15:47:13 +02:00
{
"name": "setup-pixi",
2024-06-01 01:31:15 +02:00
"version": "0.8.1",
2023-09-03 15:47:13 +02:00
"private": true,
"description": "Action to set up the pixi package manager.",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
2023-09-13 15:53:07 +02:00
"lint": "eslint ./src --ext ts",
"lint:fix": "eslint ./src --ext ts --fix"
2023-09-03 15:47:13 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/prefix-dev/setup-pixi.git"
},
"keywords": [
"setup",
"pixi",
"conda"
],
"author": "Pavel Zwerschke <pavelzw@gmail.com>",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
2023-09-03 15:47:13 +02:00
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
2024-06-01 01:31:15 +02:00
"@iarna/toml": "^2.2.5",
2023-09-03 15:47:13 +02:00
"untildify": "^5.0.0",
2024-04-15 09:37:12 +02:00
"which": "^4.0.0",
2023-10-09 08:04:41 +00:00
"zod": "^3.22.4"
2023-09-03 15:47:13 +02:00
},
"devDependencies": {
"@types/node": "^20.12.2",
2024-04-15 09:37:12 +02:00
"@types/which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
2023-09-03 15:47:13 +02:00
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
2023-09-03 15:47:13 +02:00
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
2023-09-03 15:47:13 +02:00
}
}