-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "blazor-github-pages",
"description": "GitHub Pages Blazor WASM",
"private": true,
"version": "4.0.0",
"author": "Bluehill",
"license": "MIT",
"homepage": "https://github.com/na1307/blazor-github-pages",
"repository": {
"type": "git",
"url": "git+https://github.com/na1307/blazor-github-pages.git"
},
"bugs": {
"url": "https://github.com/na1307/blazor-github-pages/issues"
},
"keywords": [
"actions",
"blazor",
"pages"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"type": "module",
"packageManager": "pnpm@10.19.0",
"scripts": {
"bundle": "pnpm package",
"package": "tsc && vite build",
"package:watch": "pnpm package -- --watch",
"test": "vitest watch",
"ci-test": "vitest run",
"lint": "eslint",
"format": "prettier --write ."
},
"devDependencies": {
"@sonar/scan": "^4.3.2",
"@types/node": "^24.10.0",
"@vitest/coverage-v8": "4.0.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3",
"vite": "^7.1.12",
"vitest": "^4.0.7"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1"
}
}