-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.03 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
{
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"test": "jest",
"lint": "biome check ./src",
"format": "biome check --write ./src",
"generate-json-schema": "typescript-json-schema --strictNullChecks true --noExtraProps true src/rules.ts RuleStringPatterns > ./schema.json"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/action": "^7.0.0",
"ajv": "^8.16.0",
"mustache": "^4.2.0"
},
"name": "happy-commit",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "[email protected]:kitsuyui/happy-commit.git",
"author": "kitsuyui <[email protected]>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@swc/core": "^1.6.5",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/mustache": "^4.2.5",
"@types/node": "^22.0.0",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2",
"typescript-json-schema": "^0.65.0"
}
}