-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "github-action-repo-settings-sync",
"version": "2.0.0",
"description": "Github Action to setup repository settings",
"main": "dist/index.js",
"type": "commonjs",
"author": "Rakambda",
"private": true,
"homepage": "https://github.com/RakambdaOrg/github-action-repo-settings-sync",
"repository": {
"type": "git",
"url": "git+https://github.com/RakambdaOrg/github-action-repo-settings-sync.git"
},
"bugs": {
"url": "https://github.com/RakambdaOrg/github-action-repo-settings-sync/issues"
},
"scripts": {
"clean": "del-cli --force ./dist",
"lint": "eslint ./src",
"start": "tsc --noEmit && npm run start:schema && tsx --env-file=.env ./src/index.ts",
"start:schema": "ts-json-schema-generator --path src/type/configuration.ts Configuration --type Configuration --out src/type/configuration-schema.json",
"build": "npm run clean && ncc build ./src/index.ts -o dist -m --no-cache && npm run build:schema",
"build:debug": "npm run clean && ncc build ./src/index.ts --v8-cache --source-map --no-cache && npm run build:schema",
"build:schema": "ts-json-schema-generator --minify --path src/type/configuration.ts Configuration --type Configuration --out dist/type/configuration-schema.json"
},
"keywords": [
"sync",
"settings-sync",
"github-workflow",
"github-actions"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/auth-app": "^7.1.4",
"@octokit/plugin-paginate-rest": "^11.3.6",
"@octokit/plugin-throttling": "^9.3.2",
"action-input-parser": "^1.2.38",
"ajv": "^8.17.1",
"fs-extra": "^11.2.0",
"libsodium-wrappers": "^0.7.15",
"lodash": "^4.17.21",
"node-readfiles": "0.3.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@octokit/core": "^6.1.2",
"@octokit/types": "^13.6.2",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/libsodium-wrappers": "^0.7.14",
"@types/lodash": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.19.1",
"@vercel/ncc": "^0.38.3",
"del-cli": "^6.0.0",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"ncc": "^0.3.6",
"ts-json-schema-generator": "^2.3.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}