-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "typescript-github-action-example",
"version": "0.0.0",
"description": "Example of a GitHub action written in TypeScript",
"repository": "https://github.com/mcalthrop/typescript-github-action-example",
"type": "module",
"scripts": {
"build": "vite build",
"execute": "node dist/index",
"check": "biome check",
"check:fix": "biome check --write",
"knip": "knip --max-issues 0 --treat-config-hints-as-errors",
"test": "vitest run --coverage",
"test:ui": "vitest --coverage --ui",
"test:watch": "vitest --coverage",
"ts-check": "tsc --build --force --verbose",
"prepare": "husky"
},
"keywords": ["typescript", "github", "action"],
"author": "Matt Calthrop <matt@calthrop.com>",
"packageManager": "pnpm@11.1.2",
"engines": {
"pnpm": "11.1.2",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"node": "24.16.0"
},
"license": "MIT",
"pnpm": {
"overrides": {
"rollup@>=4.0.0 <4.59.0": "4.60.4",
"undici@>=6.0.0 <6.24.0": "8.3.0",
"picomatch@<2.3.2": ">=2.3.2",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3"
}
},
"devDependencies": {
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"@biomejs/biome": "2.4.15",
"@tsconfig/node24": "24.0.4",
"@tsconfig/recommended": "1.0.13",
"@types/node": "24.12.4",
"@vitest/coverage-istanbul": "4.1.7",
"@vitest/ui": "4.1.7",
"husky": "9.1.7",
"knip": "6.14.2",
"typescript": "6.0.3",
"vite": "8.0.14",
"vitest": "4.1.7",
"yup": "1.7.1"
}
}