-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "openhop-monorepo",
"version": "0.1.0",
"private": true,
"description": "Animated data-flow diagrams your AI agent can write. Monorepo root.",
"repository": {
"type": "git",
"url": "https://github.com/naorsabag/openhop.git"
},
"homepage": "https://github.com/naorsabag/openhop",
"bugs": {
"url": "https://github.com/naorsabag/openhop/issues"
},
"license": "MIT",
"author": "Naor Sabag (https://github.com/naorsabag)",
"keywords": [
"ai-agents",
"claude-code",
"claude-code-skill",
"cursor",
"windsurf",
"cline",
"aider",
"data-flow",
"code-visualization",
"developer-tools",
"yaml",
"diagram",
"mermaid-alternative",
"langgraph",
"typescript",
"ai",
"llm-tools",
"architecture",
"flow-chart",
"animation"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"serve": "npx tsx packages/server/src/index.ts",
"dev": "npx tsx packages/server/src/index.ts & cd packages/web && npm run dev",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,yml,yaml}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,yml,yaml}\" --ignore-path .prettierignore"
},
"devDependencies": {
"prettier": "^3.9.6"
}
}