forked from jakoch/install-vulkan-sdk-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "install-vulkan-sdk-action",
"version": "1.4.0",
"private": true,
"description": "A Github Action installing the Vulkan SDK and Runtime.",
"author": "Jens A. Koch",
"license": "MIT",
"homepage": "https://github.com/jakoch/install-vulkan-sdk-action#readme",
"scripts": {
"build": "tsc",
"format:check": "npx @biomejs/biome format",
"format:write": "npx @biomejs/biome format --write",
"lint:check": "npx @biomejs/biome lint",
"lint:fix": "npx @biomejs/biome lint --write",
"local:run": "npx @github/local-action run . ./src/main.ts env.local",
"package": "ncc build --source-map --minify",
"test": "jest --verbose --detectOpenHandles --runInBand",
"test:cov": "jest --verbose --coverage",
"test:nocache": "jest --verbose --detectOpenHandles --runInBand --no-cache",
"npm:audit": "npm audit --audit-level=high fix",
"npm:outdated": "npm outdated",
"npm:clean_install": "npm clean-install --no-audit --strict-peer-deps",
"npm:install": "npm install --no-audit --strict-peer-deps",
"npm:update": "npm update --no-audit --strict-peer-deps",
"prepare": "husky",
"pre-commit": "npm run all",
"all": "npm run format:write && npm run build && npm run npm:audit && npm run package && npm test"
},
"keywords": [
"actions",
"vulkan",
"vulkan-sdk",
"setup",
"install"
],
"main": "lib/main.js",
"dependencies": {
"@actions/cache": "^5",
"@actions/core": "^2",
"@actions/http-client": "^3",
"@actions/io": "^2",
"@actions/tool-cache": "^3"
},
"devDependencies": {
"@biomejs/biome": "^2",
"@github/local-action": "^7.0.0",
"@types/jest": "^30",
"@types/node": "^25.0",
"@vercel/ncc": "^0.38.4",
"husky": "^9.1.7",
"jest": "^30",
"ts-jest": "^29",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakoch/install-vulkan-sdk-action.git"
},
"bugs": {
"url": "https://github.com/jakoch/install-vulkan-sdk-action/issues"
},
"engines": {
"node": ">=20.18.1",
"npm": ">=10.8.0"
}
}