-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.32 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.32 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
{
"name": "@camunda8/cli",
"version": "2.0.0-alpha.6",
"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": {
"build": "npm run clean && tsc && npm run copy-plugins && npm run copy-templates",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"copy-plugins": "node -e \"const fs=require('fs');const path=require('path');const src='default-plugins';const dest='dist/default-plugins';if(fs.existsSync(src)){fs.cpSync(src,dest,{recursive:true})}\"",
"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": "node --experimental-strip-types --test tests/unit/setup.test.ts tests/unit/*.test.ts tests/integration/*.test.ts",
"test:unit": "node --experimental-strip-types --test tests/unit/setup.test.ts tests/unit/*.test.ts",
"test:integration": "node --experimental-strip-types --test tests/integration/*.test.ts",
"dev": "node src/index.ts",
"cli": "node src/index.ts"
},
"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"
},
"dependencies": {
"@camunda8/orchestration-cluster-api": "^8.8.4",
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@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",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}