-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"scripts": {
"build": "tsdown",
"test": "vitest run --coverage",
"lint": "biome check ./",
"format": "biome check --write ./",
"generate-json-schema": "typescript-json-schema --strictNullChecks true --noExtraProps true --required src/rules.ts RuleStringPatterns > ./schema.json",
"release:verify": "bun ./scripts/verify-release-version.mjs"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/action": "^8.0.4",
"ajv": "^8.17.1",
"mustache": "^4.2.0"
},
"name": "happy-commit",
"version": "0.9.0",
"main": "dist/index.js",
"repository": "git@github.com:kitsuyui/happy-commit.git",
"author": "kitsuyui <kitsuyui@kitsuyui.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@swc/core": "^1.15.11",
"@types/mustache": "^4.2.6",
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.1.4",
"rollup-plugin-license": "^3.6.0",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"typescript-json-schema": "^0.67.1",
"vitest": "^4.1.4"
},
"packageManager": "bun@1.3.11"
}