-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 940 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 940 Bytes
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
{
"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@10.32.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": "^10.1.0",
"eslint-config-workspace": "workspace:*",
"rimraf": "^6.1.3",
"turbo": "^2.8.20",
"typescript": "5.9.3",
"typescript-config-workspace": "workspace:*"
}
}