generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"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 && pnpm run build-release && pnpm run fix && pnpm run format",
"build": "ncc build src/main.ts --license licenses.txt -o dist",
"build-release": "ncc build src/main.ts --license licenses.txt -o dist --minify --no-cache --no-source-map-register",
"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/prettier-config": "0.9.1",
"@bfra.me/tsconfig": "0.8.1",
"@eslint/js": "9.14.0",
"@semantic-release/git": "10.0.1",
"@types/eslint__js": "8.42.3",
"@types/node": "20.17.6",
"@vercel/ncc": "0.38.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.14.0",
"eslint-typegen": "0.3.2",
"globals": "15.12.0",
"jiti": "2.4.0",
"js-yaml": "4.1.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vitest": "2.1.4"
},
"packageManager": "[email protected]"
}