-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 802 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 802 Bytes
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
{
"name": "dcd-github-action",
"description": "run maestro tests on devicecloud.dev",
"author": "devicecloud.dev",
"version": "2.1.0",
"main": "src/index.ts",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "ncc build",
"test": "pnpm run build && cp -r dist ../test-gha/gha && cp action.yml ../test-gha/gha"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^8.0.1",
"@octokit/rest": "^22.0.1",
"form-data": "^4.0.5",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@types/node-fetch": "^2.6.13",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"undici": ">=7.24.4"
}
},
"packageManager": "pnpm@10.29.3"
}