-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "@eqrm/ct-cli",
"version": "0.1.0",
"description": "ChurchTools structure-as-code CLI — declarative plan/apply for the overarching, rights-bearing structure (campuses, groups, hierarchies, permissions, auto-groups). Never manages people.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/eqrm/ct-cli.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": {
"ct": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:client": "openapi-typescript \"$CT_HOST/system/runtime/swagger/openapi.json\" -o src/api/schema.d.ts",
"regenerate:permission-catalog": "tsx scripts/regenerate-permission-catalog.ts"
},
"dependencies": {
"commander": "^12.1.0",
"jiti": "^2.4.0",
"omelette": "^0.4.17",
"openapi-fetch": "^0.13.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"@types/omelette": "^0.4.5",
"eslint": "^9.0.0",
"openapi-typescript": "^7.4.0",
"prettier": "^3.3.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.1.0"
}
}