-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
{
"name": "mise-action",
"description": "mise tool setup action",
"version": "4.0.1",
"author": "step-security",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/step-security/mise-action.git"
},
"keywords": [
"actions",
"mise",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"all": "npm run format:write && npm run lint && npm run package",
"bundle": "npm run format:write && npm run package",
"format:check": "prettier --check **/*.ts",
"format:write": "prettier --write **/*.ts",
"lint": "npx eslint . && npm run format:check",
"package": "ncc build -s src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^5.0.0",
"@actions/core": "^2.0.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@types/handlebars": "^4.0.40",
"axios": "^1.9.0",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}