-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "setup-cuda",
"version": "1.0.0",
"description": "Set up a specific version of NVIDIA CUDA in GitHub Actions",
"main": "dist/index.js",
"scripts": {
"build": "vp pack",
"format": "vp fmt src test",
"format:check": "vp fmt --check src test",
"lint": "vp lint src test",
"lint:fix": "vp lint src test --fix",
"typecheck": "tsc --noEmit",
"check": "vp check",
"check:fix": "vp check --fix",
"test": "vp test run",
"test:watch": "vp test",
"test:coverage": "vp test run --coverage",
"all": "vp check && tsc --noEmit && vp test run && vp pack",
"prepare": "vp config"
},
"keywords": [
"actions",
"cuda",
"nvidia"
],
"author": "mjun0812",
"license": "MIT",
"packageManager": "pnpm@10.34.4",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.0",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "^6.0.0",
"vite-plus": "catalog:",
"vitest": "catalog:"
}
}