-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "skynet-graph",
"version": "1.4.0",
"license": "AGPL-3.0-or-later",
"main": "./lib/index.js",
"author": "Nathanael Braun <pp9ping@gmail.com>",
"repository": { "type": "git", "url": "git+https://github.com/9pings/skynet-graph.git" },
"homepage": "https://github.com/9pings/skynet-graph#readme",
"bugs": "https://github.com/9pings/skynet-graph/issues",
"bin": {
"sg": "bin/sg"
},
"files": [
"lib",
"bin",
"concepts",
"plugins",
"docs/*.md",
"README.md",
"CONTRIBUTING.md",
"LICENSE"
],
"scripts": {
"test": "node --test --test-force-exit tests/unit/*.test.js tests/integration/*.test.js",
"test:watch": "node --test --watch tests/unit/*.test.js",
"test:studio": "node scripts/studio-smoke.mjs",
"local-inference:setup": "bash scripts/setup-local-inference.sh"
},
"dependencies": {
"@jsep-plugin/object": "^1.2.2",
"@jsep-plugin/ternary": "^1.1.4",
"array-differ": "^2.1.0",
"deepmerge": "^3.2.0",
"intersect": "^1.0.1",
"is": "^3.2.1",
"jsep": "^1.4.0",
"json5": "^2.2.3",
"shortid": "^2.2.16",
"ws": "^8.21.0"
},
"devDependencies": {
"esbuild": "^0.28.1",
"openai": "^6.45.0",
"puppeteer": "^25.1.0"
}
}