-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 KB
/
package.json
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
{
"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": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.10",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rollup": "^4.32.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"workspaces": [
"packages/*",
"agents/*",
"llm_agents/*"
],
"author": "",
"license": "MIT",
"dependencies": {
"yaml": "^2.7.0"
}
}