-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
67
68
69
70
71
72
73
{
"name": "set-commit-status",
"version": "1.0.2",
"private": "true",
"description": "Set github commit status",
"main": "dist/index.js",
"scripts": {
"build": "pnpm ncc build src/index.ts -o dist --source-map --license licenses.txt",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check --cache .",
"format:write": "prettier --write --cache .",
"lint": "eslint . --max-warnings=0 --cache",
"lint:inspect": "pnpm dlx @eslint/config-inspector",
"typecheck": "tsc --noEmit",
"spellcheck": "cspell \"**/*.{js,jsx,mjs,ts,tsx,mts,md,mdx}\" --quiet",
"gen:tags": "tsx scripts/update-tags.ts"
},
"keywords": [
"github actions",
"commit status"
],
"author": "108yen",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-throttling": "^11.0.0"
},
"devDependencies": {
"@actions/exec": "^3.0.0",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^2.0.0",
"@eslint/config-inspector": "^1.0.0",
"@eslint/js": "^9.11.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vercel/ncc": "^0.38.2",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "4.1.5",
"cspell": "^9.0.0",
"eslint": "^9.11.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-perfectionist": "^4.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"find-packages": "^10.0.4",
"globals": "^17.0.0",
"lefthook": "^2.0.0",
"prettier": "^3.3.3",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.0",
"typescript-eslint": "^8.8.0",
"vitest": "^4.0.0"
}
}