-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "setup-wdk7",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "GitHub Action to detect, download, cache, and expose Windows Driver Kit 7.1.",
"main": "dist/index.js",
"scripts": {
"check": "tsc --noEmit",
"package": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=esm --outfile=dist/index.js --banner:js=\"import { createRequire as __tinysecCreateRequire } from 'node:module';const require = __tinysecCreateRequire(import.meta.url);\" && node scripts/trim-dist.cjs dist/index.js",
"build": "npm run check && npm run package"
},
"dependencies": {
"@actions/cache": "^6.0.1",
"@actions/core": "^3.0.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"esbuild": "^0.28.0",
"typescript": "^5.8.3"
}
}