-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.37 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.37 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
62
63
64
{
"name": "repo-sync-action",
"version": "0.1.0",
"private": true,
"description": "Sync subfolders from a source repo to repositories discovered by GitHub topics.",
"main": "dist/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"action.yml",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"bundle": "npm run build && ncc build lib/index.js -o dist",
"test": "vitest run",
"test:watch": "vitest",
"watch": "npm-watch",
"lint:md": "markdownlint-cli2"
},
"keywords": [
"github-action",
"sync",
"topics",
"repos"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/plugin-paginate-rest": "^13.1.1",
"@octokit/rest": "^22.0.0",
"fs-extra": "^11.3.1",
"glob": "^11.0.3",
"simple-git": "^3.28.0",
"yaml": "^2.8.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.2.1",
"@vercel/ncc": "^0.38.3",
"markdownlint-cli2": "^0.15.0",
"npm-watch": "^0.13.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"watch": {
"test": {
"patterns": [
"src",
"tests"
],
"extensions": "ts,tsx,js,json",
"ignore": [
"dist",
"node_modules"
]
}
}
}