forked from Jimver/cuda-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.03 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
67
68
69
70
{
"name": "cuda-toolkit",
"type": "module",
"version": "0.2.30",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "GitHub Action to install the NVIDIA CUDA Toolkit",
"author": "Jim Verheijde",
"license": "MIT",
"homepage": "https://github.com/MZWNET/cuda-toolkit",
"repository": {
"type": "git",
"url": "git+https://github.com/MZWNET/cuda-toolkit.git"
},
"bugs": {
"url": "https://github.com/MZWNET/cuda-toolkit/issues"
},
"keywords": [
"actions",
"cuda",
"cuda-toolkit",
"github-actions",
"nvidia",
"toolkit"
],
"exports": {
".": "./dist/index.cjs"
},
"engines": {
"node": ">=24"
},
"scripts": {
"all": "pnpm run lint && pnpm run typecheck && pnpm run knip && pnpm run test && pnpm run coverage && pnpm run build",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --tree-shaking=true --minify --sourcemap --tsconfig=tsconfig.build.json",
"build:watch": "pnpm run build --watch",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"knip": "knip",
"lint": "eslint .",
"local-action": "@github/local-action . src/main.ts .env",
"test": "vitest run",
"typecheck": "tsgo --noEmit",
"update-links": "tsx scripts/update-links/index.ts"
},
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@types/semver": "^7.7.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.2",
"@github/local-action": "^7.0.1",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260315.1",
"@vitest/coverage-v8": "^4.1.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"eslint-plugin-format": "^2.0.1",
"jiti": "^2.6.1",
"knip": "^5.86.0",
"make-coverage-badge": "^1.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}