forked from stordco/actions-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 KB
/
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
40
41
42
{
"name": "@stordco/actions-sync",
"version": "1.12.0",
"description": "Sync GitHub repositories via templates and scripts",
"license": "MIT",
"main": "src/index.ts",
"homepage": "https://github.com/stordco/actions-sync#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stordco/actions-sync.git"
},
"bugs": {
"url": "https://github.com/stordco/actions-sync/issues"
},
"scripts": {
"build": "ncc build src/entrypoint.ts --asset-builds --out dist --source-map --license licenses.txt",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test": "vitest"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.7.0",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/node": "^20.4.1",
"@types/uuid": "^9.0.2",
"@vercel/ncc": "^0.36.1",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}