-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "boilerplate-sync",
"version": "1.0.5",
"description": "GitHub Action to sync project files from boilerplate repositories",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --sourcemap",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"type-check": "tsc --noEmit"
},
"keywords": [
"github-action",
"boilerplate",
"sync",
"template"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@octokit/rest": "^22.0.1",
"minimatch": "^10.2.6",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"globals": "^17.9.0",
"typescript": "^6.0.3",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=24"
},
"prettier": {
"singleQuote": true
}
}