forked from FellouAI/eko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@eko-ai/eko",
"version": "1.0.9",
"description": "Empowering language to transform human words into action.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./dist/types/index.d.ts"
},
"./extension": {
"require": "./dist/extension.cjs.js",
"import": "./dist/extension.esm.js",
"types": "./dist/extension/index.d.ts"
},
"./web": {
"require": "./dist/web.cjs.js",
"import": "./dist/web.esm.js",
"types": "./dist/web/index.d.ts"
},
"./nodejs": {
"require": "./dist/nodejs.cjs.js",
"import": "./dist/nodejs.esm.js",
"types": "./dist/nodejs/index.d.ts"
},
"./fellou": {
"require": "./dist/fellou.cjs.js",
"import": "./dist/fellou.esm.js",
"types": "./dist/fellou/index.d.ts"
}
},
"directories": {
"test": "test",
"doc": "docs"
},
"scripts": {
"build": "rollup -c",
"build:dev": "npm run build && npm link",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "jest",
"docs": "typedoc"
},
"author": "FellouAI",
"license": "MIT",
"keywords": [
"fellou",
"eko"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FellouAI/eko.git"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.33.0",
"chromium-bidi": "^0.12.0",
"dotenv": "^16.0.0",
"html2canvas": "^1.4.1",
"openai": "^4.77.0",
"playwright": "^1.49.1",
"uuid": "^11.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.28.1",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.1.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}