-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@vivswan/github-settings-as-code",
"version": "2.0.0",
"description": "GitHub Action applying declarative repository settings: rulesets, labels, branch protection, and more.",
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Vivswan/github-settings-as-code.git"
},
"engines": {
"node": ">=22.14"
},
"sideEffects": false,
"exports": {
".": {
"types": "./lib/pkg/index.d.ts",
"default": "./lib/pkg/index.js"
},
"./internal": {
"types": "./lib/pkg/internal.d.ts",
"default": "./lib/pkg/internal.js"
},
"./settings.schema.json": "./lib/settings.schema.json",
"./package.json": "./package.json"
},
"bin": {
"github-settings-as-code": "lib/pkg/cli.js",
"gsac": "lib/pkg/cli.js"
},
"files": [
"lib/pkg/",
"lib/settings.schema.json",
"LICENSE.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "bun run lint && bun run knip && bun run lint:arch && bun run check:compat && bun run typecheck && bun run test && bun run build:check",
"check:compat": "bun .github/scripts/check-compat-markers.ts",
"lint": "bun x biome ci --error-on-warnings .",
"lint:yaml": "git ls-files -z '*.yml' '*.yaml' | xargs -0 yamllint -s",
"lint:fix": "bun x biome check --write .",
"lint:arch": "bun .github/scripts/arch-lint.ts",
"lint:package": "bun x publint --strict && bun x attw --pack . --profile esm-only",
"typecheck": "bun x tsc -p .",
"knip": "knip",
"test": "bun run build:schema && bun test",
"test:e2e": "bun test/e2e/run.ts",
"fuzz": "bun run build:schema && bun test/e2e/fuzz.ts",
"build": "bun run build:gaps-index && bun run build:bundle && bun run build:lib && bun run build:schema && bun run build:docs && bun run build:action-docs && bun run build:inputs-table",
"build:bundle": "bun build src/main.ts --target=node --outfile lib/index.js",
"build:lib": "bun x tsdown",
"build:schema": "bun .github/scripts/gen-settings-schema.ts",
"build:docs": "bun .github/scripts/gen-docs.ts",
"build:action-docs": "bun .github/scripts/gen-action-docs.ts",
"build:inputs-table": "bun .github/scripts/gen-inputs-table.ts",
"build:gaps-index": "bun .github/scripts/gen-gaps-index.ts",
"build:check": "bun .github/scripts/generated.ts",
"prepare": "lefthook install || true"
},
"dependencies": {
"@noble/ciphers": "2.4.0",
"@noble/curves": "2.4.0",
"@noble/hashes": "2.4.0",
"@octokit/core": "7.0.8",
"@octokit/openapi-types": "29.0.1",
"@octokit/plugin-request-log": "6.0.0",
"@octokit/plugin-retry": "8.1.1",
"@octokit/plugin-throttling": "11.0.5",
"@octokit/types": "18.0.0",
"age-encryption": "0.3.1",
"bottleneck": "2.19.5",
"commander": "15.0.0",
"consola": "3.4.2",
"neverthrow": "8.2.0",
"picocolors": "1.1.1",
"yaml": "2.9.0",
"zod": "4.5.4"
},
"devDependencies": {
"@actions/artifact": "6.2.1",
"@actions/core": "3.0.1",
"@arethetypeswrong/cli": "0.18.5",
"@biomejs/biome": "2.5.11",
"@octokit/graphql-schema": "15.26.1",
"@octokit/openapi": "23.0.2",
"@octokit/openapi-webhooks": "12.1.0",
"@types/bun": "1.4.0",
"@types/node": "26.4.1",
"action-docs": "2.5.1",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"entities": "8.1.0",
"estree-walker": "3.0.3",
"graphql": "17.0.2",
"knip": "6.34.0",
"lefthook": "2.1.12",
"libsodium-wrappers": "0.8.4",
"oxc-parser": "0.147.0",
"publint": "0.3.24",
"tsdown": "0.23.0",
"typescript": "7.0.2"
}
}