-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "org-snapshot-mirror",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.33.0",
"description": "GitHub Action to mirror organization repos with snapshot commits",
"author": "mzwing <mzwing@mzwing.eu.org>",
"license": "MIT",
"keywords": [
"github-action",
"mirror",
"snapshot",
"git"
],
"main": "dist/index.cjs",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.cjs --minify --tree-shaking=true --tsconfig=tsconfig.build.json",
"coverage": "make-coverage-badge --output-path badges/coverage.svg",
"knip": "knip",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@octokit/rest": "^22.0.1",
"p-limit": "^7.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"@vitest/coverage-v8": "4.1.2",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-flat-config-utils": "^3.0.2",
"jiti": "^2.6.1",
"knip": "^6.1.1",
"make-coverage-badge": "^1.2.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}