-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "skedify-workflow-mono",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Repository that contains reusable workflows for Skedify",
"scripts": {
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"build": "rolldown -c",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skedify/github-workflows.git"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"pnpm": "^10.28.2"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@google/genai": "^1.39.0",
"@octokit/auth-app": "^8.2.0",
"parse-git-diff": "^0.0.19",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/node": "^24.10.10",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"rolldown": "1.0.0-rc.2",
"typescript": "^5.9.3"
},
"prettier": {
"printWidth": 100
},
"lint-staged": {
"*.{ts,js,json}": "biome check --write --no-errors-on-unmatched"
}
}