-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "@effectorhq/graph",
"version": "1.0.0",
"description": "Interactive visualization of the AI capability graph",
"main": "src/index.js",
"bin": {
"effector-graph": "bin/effector-graph.js"
},
"type": "module",
"scripts": {
"dev": "node src/server.js",
"build": "node scripts/build.js",
"test": "node --test tests/*.test.js",
"lint": "node --check src/*.js",
"prepublishOnly": "node --test tests/*.test.js"
},
"keywords": [
"effector",
"visualization",
"graph",
"capability-graph",
"ai-agent",
"spectrum",
"polar-chart"
],
"author": "effectorHQ Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/effectorHQ/effector-graph.git"
},
"homepage": "https://github.com/effectorHQ/effector-graph",
"bugs": {
"url": "https://github.com/effectorHQ/effector-graph/issues"
},
"files": [
"src/",
"bin/",
"vscode/",
"README.md",
"LICENSE.md"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@effectorhq/core": "^1.0.0",
"@effectorhq/types": "^1.0.0"
}
}