forked from hikogui/install-vulkan-sdk-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.81 KB
/
package.json
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
{
"name": "install-vulkan-sdk-action",
"version": "1.1.1",
"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",
"package": "ncc build --source-map --minify",
"test": "jest --no-cache --verbose --detectOpenHandles --runInBand",
"test:cov": "jest --verbose --coverage",
"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",
"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": "^4",
"@actions/core": "^1.11.1",
"@actions/http-client": "^2.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29",
"@types/node": "^22.10",
"@vercel/ncc": "^0.38.0",
"jest": "^29",
"ts-jest": "^29",
"typescript": "^5.6.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.0.0",
"npm": ">=7.0.0"
}
}