forked from Jimver/cuda-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.31 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
71
72
73
74
75
76
77
{
"name": "cuda-toolkit",
"version": "0.2.30",
"private": true,
"description": "GitHub Action to install the NVIDIA CUDA Toolkit",
"keywords": [
"actions",
"cuda",
"cuda-toolkit",
"github-actions",
"nvidia",
"toolkit"
],
"homepage": "https://github.com/MZWNET/cuda-toolkit",
"bugs": {
"url": "https://github.com/MZWNET/cuda-toolkit/issues"
},
"license": "MIT",
"author": "mzwing",
"repository": {
"type": "git",
"url": "git+https://github.com/MZWNET/cuda-toolkit.git"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"all": "pnpm run lint && pnpm run typecheck && pnpm run knip && pnpm run test && pnpm run coverage && pnpm run build",
"build": "tsgo -b && tsdown",
"build:watch": "pnpm run build --watch",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"knip": "knip",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run",
"typecheck": "tsgo --noEmit && pnpm --filter @cuda-toolkit/update-links typecheck",
"update-links": "pnpm --filter @cuda-toolkit/update-links start",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/cache": "^6.2.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@types/semver": "^7.7.1",
"semver": "^7.8.5"
},
"devDependencies": {
"@mzwing/oxc-config": "^0.1.4",
"@types/node": "^26.1.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "^4.1.10",
"knip": "^6.28.0",
"make-coverage-badge": "^1.2.0",
"oxfmt": "^0.60.0",
"oxlint": "1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.13",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{cjs,cjsx,cts,ctsx,js,jsx,mjs,mjsx,mts,mtsx,ts,tsx,vue}": [
"oxfmt --write",
"oxlint --fix"
],
"*.{css,graphql,gql,html,json,json5,jsonc,less,md,mdx,scss,svelte,toml,yaml,yml}": "oxfmt --write"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.16.0+sha512.b767e9a98fc87aec0f42daefcd0e84941c2cdb45d73c4e1e68860fb2bdfdbe032ab592105479e5e05c237f740c8a5ffdbbb52385797ddc2296745a1bbb883e8d"
}