generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"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 <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"bootstrap": "pnpm install --prefer-frozen-lockfile --ignore-scripts --prefer-offline --loglevel error",
"build": "tsup",
"build-release": "tsup --minify",
"check-format": "prettier --check .",
"check-types": "tsc",
"fix": "pnpm run format && pnpm run lint --fix",
"format": "prettier --write .",
"lint": "eslint --flag unstable_ts_config .",
"test": "vitest"
},
"prettier": "@bfra.me/prettier-config/120-proof",
"dependencies": {
"@actions/core": "1.11.1"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.7.0",
"@bfra.me/prettier-config": "0.13.2",
"@bfra.me/tsconfig": "0.9.3",
"@semantic-release/git": "10.0.1",
"@swc/core": "1.9.3",
"@types/node": "22.10.1",
"@vitest/eslint-plugin": "1.1.12",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild-plugin-license": "1.2.3",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.2.1",
"jiti": "2.4.1",
"js-yaml": "4.1.0",
"prettier": "3.4.1",
"semantic-release": "24.2.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vitest": "2.1.6"
},
"packageManager": "[email protected]"
}