-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.99 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
{
"name": "@camunda8/cli",
"version": "0.0.0-semantically-released",
"description": "Camunda 8 CLI - minimal-dependency CLI for Camunda 8 operations",
"type": "module",
"engines": {
"node": ">=22.18.0"
},
"bin": {
"c8ctl": "./dist/index.js",
"c8": "./dist/index.js"
},
"exports": {
"./runtime": {
"types": "./dist/runtime.d.ts",
"default": "./dist/runtime.js"
}
},
"files": [
"dist",
"CONTEXT.md",
"EXAMPLES.md",
"PLUGIN-HELP.md",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && sh -c 'hp=$(git config --local --get core.hooksPath 2>/dev/null || true); if [ -z \"$hp\" ] || [ \"$hp\" = \".githooks\" ]; then git config --local core.hooksPath .githooks; else echo \"prepare: leaving existing core.hooksPath=$hp\"; fi' || true",
"build:vendor": "npm run build:vendor:element-template && npm run build:vendor:bpmnlint",
"build:vendor:element-template": "esbuild default-plugins/element-template/vendor-src/bundle-entry.js --bundle --format=cjs --platform=node --outfile=dist/vendor/bpmn-element-templates.cjs",
"build:vendor:bpmnlint": "node scripts/build-bpmnlint-vendor.mjs",
"build:plugins": "node scripts/build-plugins.mjs",
"build": "npm run lint && npm run sync:readme && npm run sync:docs && npm run clean && tsc && npm run build:plugins && npm run build:vendor && npm run copy-plugins && npm run copy-templates",
"lint": "biome check src/ tests/ scripts/ default-plugins/",
"lint:src": "biome check src/ scripts/",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"check:layering": "node --experimental-strip-types --test tests/unit/layering-import-boundary.test.ts",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"copy-plugins": "node -e \"const fs=require('fs');const src='default-plugins';const dest='dist/default-plugins';if(fs.existsSync(src)){fs.cpSync(src,dest,{recursive:true,filter:(s)=>!s.endsWith('.ts')})}\"",
"copy-templates": "node -e \"const fs=require('fs');const src='src/templates';const dest='dist/templates';if(fs.existsSync(src)){fs.cpSync(src,dest,{recursive:true})}\"",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm run build:vendor && node --experimental-strip-types --test tests/unit/*.test.ts",
"test:integration": "npm run build:vendor && node --experimental-strip-types --experimental-test-isolation=none --test tests/integration/*.test.ts",
"dev": "node src/index.ts",
"cli": "node src/index.ts",
"sync:readme": "node --experimental-strip-types scripts/sync-readme-commands.ts",
"sync:readme:check": "node --experimental-strip-types scripts/sync-readme-commands.ts --check",
"sync:docs": "node --experimental-strip-types scripts/sync-readme-commands.ts --docs",
"sync:docs:check": "node --experimental-strip-types scripts/sync-readme-commands.ts --docs --check"
},
"keywords": [
"camunda",
"camunda8",
"cli",
"bpmn",
"workflow",
"orchestration"
],
"repository": {
"type": "git",
"url": "git+https://github.com/camunda/c8ctl.git"
},
"bugs": {
"url": "https://github.com/camunda/c8ctl/issues"
},
"homepage": "https://github.com/camunda/c8ctl#readme",
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"workspaces": [
"default-plugins/bpmn",
"default-plugins/feel",
"default-plugins/element-template"
],
"dependencies": {
"@camunda8/orchestration-cluster-api": "^9.1.0",
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.5.0",
"@types/semver": "^7.7.1",
"esbuild": "^0.28.0",
"semantic-release": "^25.0.3",
"typescript": "^6.0.2"
}
}