-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.03 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
{
"name": "@intentius/github-warden",
"version": "0.5.0",
"type": "module",
"description": "Keep your GitHub org and repos in declared state — reconcile, guardrails, drift correction",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/INTENTIUS/github-warden.git"
},
"homepage": "https://github.com/INTENTIUS/github-warden#readme",
"bugs": {
"url": "https://github.com/INTENTIUS/github-warden/issues"
},
"publishConfig": {
"access": "public"
},
"config": {
"esm_require_banner": "import { createRequire as __gwCreateRequire } from 'node:module'; import { fileURLToPath as __gwFileURLToPath } from 'node:url'; import { dirname as __gwDirname } from 'node:path'; var require = globalThis.require ?? __gwCreateRequire(import.meta.url); var __filename = __gwFileURLToPath(import.meta.url); var __dirname = __gwDirname(__filename);"
},
"bin": {
"github-warden": "bin/github-warden.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"tsc": "tsc --noEmit",
"lint:prose": "bash mkdocs-stage.sh && node scripts/lint-prose.mjs $(find _docs -name '*.md')",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"build": "rm -rf dist && esbuild src/cli.ts --bundle --splitting --platform=node --format=esm --outdir=dist --chunk-names=chunk-[hash] --banner:js=\"$npm_package_config_esm_require_banner\" && chmod +x dist/cli.js",
"build:action": "esbuild src/action.ts --bundle --platform=node --format=esm --define:process.env.GITHUB_WARDEN_IS_ACTION='\"1\"' --banner:js=\"$npm_package_config_esm_require_banner\" --outfile=action/index.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@intentius/chant": "^0.56.0",
"@intentius/chant-lexicon-github": "^0.56.0"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.0.0",
"esbuild": "^0.28.0",
"libsodium-wrappers": "^0.8.4",
"sentences": "^0.1.1",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
}
}