-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.4 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
{
"name": "@gorules/cli",
"version": "0.3.3",
"description": "Command-line tool for the GoRules BRMS platform",
"homepage": "https://gorules.io",
"repository": {
"type": "git",
"url": "https://github.com/gorules/cli"
},
"keywords": [
"gorules",
"brms",
"business-rules",
"decision-engine",
"decision-tables",
"rules-engine",
"cli"
],
"license": "MIT",
"author": "GoRules <hi@gorules.io> (https://gorules.io)",
"files": [
"dist",
"README.md",
"LICENSE",
"actions",
"templates"
],
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rolldown -c rolldown.config.ts",
"dev": "pnpm run build && node dist/main.js",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"bin": {
"gorules": "dist/main.js"
},
"devDependencies": {
"@clack/prompts": "^1.7.0",
"@eslint/js": "^10.0.1",
"@hono/node-server": "^1.19.17",
"@modelcontextprotocol/sdk": "^1.30.0",
"@types/node": "^25.9.5",
"@types/ws": "^8.18.1",
"boxen": "^8.0.1",
"citty": "^0.2.2",
"eslint": "^10.8.1",
"hono": "^4.13.2",
"nanoid": "^5.1.16",
"picocolors": "^1.1.1",
"prettier": "^3.9.6",
"rolldown": "1.0.0-rc.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.67.0",
"ws": "^8.21.3",
"zod": "^4.4.3"
}
}