-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "setup-micromamba",
"version": "2.0.4",
"private": true,
"description": "Action to setup micromamba",
"scripts": {
"build": "tsc --noEmit && tsup",
"dev": "tsup --watch",
"lint": "tsc --noEmit",
"all": "npm run build && npm run lint && npm run generate-third-party-license-disclaimer",
"generate-third-party-license-disclaimer": "pnpm licenses list --prod --json | npx @quantco/pnpm-licenses generate-disclaimer --json-input --output-file dist/licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mamba-org/setup-micromamba.git"
},
"keywords": [
"setup",
"micromamba",
"conda",
"mamba"
],
"author": "Pavel Zwerschke <pavel.zwerschke@quantco.com>",
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"fp-ts": "^2.16.9",
"js-yaml": "^4.1.0",
"untildify": "^5.0.0",
"which": "^5.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.0",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}