-
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.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"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",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write",
"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@10.13.1",
"engines": {
"pnpm": "10.13.1",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"node": "24.14.0"
},
"license": "MIT",
"devDependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0",
"@biomejs/biome": "^2.3.10",
"@tsconfig/node24": "24.0.4",
"@tsconfig/recommended": "1.0.13",
"@types/node": "24.12.0",
"@vitest/coverage-istanbul": "4.0.18",
"@vitest/ui": "4.0.18",
"husky": "9.1.7",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.18",
"yup": "1.7.1"
}
}