-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "elastic-github-actions",
"version": "3.0.0",
"description": "Elastic Organization GitHub Actions",
"repository": {
"type": "git",
"url": "https://github.com/elastic/github-actions.git"
},
"scripts": {
"build": "tsx ./scripts/build-actions.ts",
"checks": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@actions/core": "^3.0.1",
"lodash": "^4.18.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"memfs": "^4.57.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": "24.15.0"
},
"packageManager": "pnpm@10.33.2"
}