-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 992 Bytes
/
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
36
37
38
39
{
"name": "actions",
"version": "0.0.0",
"description": "Collection of GitHub Actions.",
"displayName": "GitHub Actions",
"author": {
"name": "Christian Sdunek",
"email": "me@systemcluster.me"
},
"repository": {
"type": "git",
"url": "github:Systemcluster/actions"
},
"license": "BSD-2-Clause",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "turbo run build --no-daemon",
"check": "turbo run check --no-daemon",
"test": "turbo run test --no-daemon",
"format": "eslint --fix \"**/*.ts\"",
"clean": "rimraf -g ./actions/*/dist ./utils/dist ./**/tsconfig.tsbuildinfo"
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-workspace": "workspace:*",
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "5.7.2",
"typescript-config-workspace": "workspace:*"
},
"resolutions": {
"@octokit/core": "^6.1.2"
}
}