generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "github-action",
"version": "0.0.0-development",
"private": true,
"description": "GitHub Action template repository for bfra.me.",
"keywords": [
"github-actions",
"nodejs",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bfra-me/github-action.git"
},
"license": "MIT",
"author": "Marcus R. Brown <git@mrbro.dev>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"bootstrap": "pnpm install --prefer-offline --loglevel warn",
"build": "tsup",
"build-release": "tsup --minify",
"check-types": "tsc --noEmit",
"fix": "eslint --fix",
"postinstall": "simple-git-hooks",
"lint": "eslint",
"test": "vitest run"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{ts,js,jsx,tsx,css,md,json,yaml,yml}": [
"pnpm run fix"
]
},
"prettier": "@bfra.me/prettier-config/120-proof",
"dependencies": {
"@actions/core": "1.11.1"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.50.1",
"@bfra.me/prettier-config": "0.16.7",
"@bfra.me/tsconfig": "0.12.2",
"@semantic-release/git": "10.0.1",
"@types/node": "24.10.14",
"@vitest/eslint-plugin": "1.6.10",
"conventional-changelog-conventionalcommits": "9.3.0",
"esbuild-plugin-license": "1.2.3",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.5.5",
"jiti": "2.6.1",
"js-yaml": "4.1.1",
"lint-staged": "16.3.2",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"simple-git-hooks": "2.13.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vitest": "4.0.18"
},
"packageManager": "pnpm@10.32.0"
}