-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.39 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
55
56
57
58
59
{
"$schema": "https://json.schemastore.org/package.json",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "vite build --ssr src/main.ts",
"check": "pnpm check.fmt && pnpm check.types",
"check.fmt": "biome check --error-on-warnings",
"check.types": "tsc",
"fmt": "biome check --write",
"postinstall": "lefthook install",
"test": "vitest run",
"vi": "vitest watch --ui",
"yolo": "lefthook uninstall"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"tslib": "2.8.1",
"undici": "7.2.0",
"zod": "3.24.1"
},
"// dependencies": {
"@actions/core": "A runtime library for GitHub Actions that provides access to inputs such as the GitHub token.",
"@actions/github": "A runtime library for GitHub Actions that provides access to the GitHub REST API via Octokit.",
"tslib": "A runtime library that optimises TypeScript applications when the `importHelpers` option is enabled in `tsconfig.json`.",
"undici": "An HTTP client that implements the Fetch API on Node.js. It is a peer dependency of `@actions/core` and `@actions/github`.",
"zod": "Zod is a data validation library."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@octokit/types": "13.6.2",
"@rainstormy/presets-biome": "1.0.0-alpha.3",
"@types/node": "20.17.12",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"lefthook": "1.10.0",
"typescript": "5.7.2",
"vite": "5.4.11",
"vitest": "1.6.0"
},
"// devDependencies": {
"@biomejs/biome": "Biome is an opinionated linter and code formatter.",
"@octokit/types": "These type definitions cover the GitHub REST API via Octokit.",
"@rainstormy/presets-biome": "This library provides predefined, opinionated Biome configurations.",
"@types/node": "These type definitions cover Node.js modules.",
"@vitest/coverage-v8": "This Vitest plugin reports code coverage.",
"@vitest/ui": "This Vitest plugin provides a test overview in the web browser.",
"lefthook": "Lefthook is a Git hooks manager.",
"typescript": "TypeScript is a statically typed programming language on top of JavaScript.",
"vite": "Vite is a development server and a bundler.",
"vitest": "Vitest is a unit testing framework."
}
}