-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "graphai-wrapper",
"version": "0.0.1",
"description": "Monorepo for the graphai ",
"scripts": {
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"eslint": "yarn workspaces run eslint",
"format": "yarn workspaces run format",
"format_top": "prettier --write src/*.ts",
"doc": "yarn workspaces run doc",
"monoRepoAgentDoc": "npx tsx src/monoRepoAgentDocs.ts",
"markdown": "npx tsx src/markdown.ts",
"sample": "npx ts-node docs/async/sample1.ts"
},
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.4"
},
"workspaces": [
"packages/*",
"agents/*",
"agent_filters/*",
"llm_agents/*"
],
"author": "",
"license": "MIT",
"dependencies": {
"yaml": "^2.9.0"
},
"resolutions": {
"minimatch": ">=9.0.7",
"flatted": ">=3.4.0"
}
}