-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "@tribesxyz/agent",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"lint": "eslint src/**/*.ts",
"dev": "tsx src/index.ts",
"start": "NODE_ENV=production tsx dist/index.js",
"agent": "tsx dist/index.js"
},
"dependencies": {
"@tribesxyz/ayaos": "0.1.55",
"dotenv": "^16.5.0"
},
"engines": {
"node": ">=22"
},
"resolutions": {
"onnxruntime-node": "1.20.0"
},
"devDependencies": {
"@changesets/cli": "2.28.1",
"@types/elliptic": "6.4.18",
"@types/express": "5.0.0",
"@types/node": "22.13.4",
"@types/pdf-parse": "1.1.4",
"dotenv-cli": "7.4.1",
"eslint": "8.57.1",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"tsup": "8.4.0",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}