-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"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@12.1.0",
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@google/genai": "^2.19.0",
"@octokit/auth-app": "^8.3.0",
"parse-git-diff": "^0.0.20",
"zod": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@types/node": "^26.4.0",
"concurrently": "^10.0.5",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"rolldown": "1.2.6",
"typescript": "^7.0.2"
},
"prettier": {
"printWidth": 100
},
"lint-staged": {
"*.{ts,js,json}": "biome check --write --no-errors-on-unmatched"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^26.8.1",
"onFail": "download"
},
"packageManager": {
"name": "pnpm",
"version": "^12.1.0",
"onFail": "download"
}
}
}