-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.53 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
{
"name": "@typeai/core",
"version": "0.6.1",
"description": "An AI Engineering Framework for TypeScript",
"author": "Jeff LaPorte (https://github.com/jefflaporte)",
"repository": "https://github.com/TypeAI-dev/typeai",
"private": false,
"license": "SEE LICENSE IN LICENSE.txt",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"clean": "rm -rf dist node_modules",
"link": "npm-local-development .",
"lint": "eslint src",
"prepare": "./node_modules/.bin/deepkit-type-install",
"prepublishOnly": "pnpm run build",
"test": "jest --setupFiles 'dotenv/config'",
"test-op": "op run --env-file=.env jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"llm",
"gpt",
"openai",
"agents",
"deepkit",
"typescript"
],
"files": [
"dist/*.js",
"dist/*.map",
"dist/*.d.ts",
"README.md",
"LICENSE.txt"
],
"bugs": {
"url": "https://github.com/TypeAI-dev/typeai/issues/new?template=bug_report.md"
},
"devDependencies": {
"@deepkit/type-compiler": "npm:@jefflaporte/[email protected]",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv": "^16.3.1",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"npm-local-development": "^0.4.0",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-esbuild-transform": "^1.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@deepkit/core": ">=1.0.1-alpha.97",
"@deepkit/type": ">=1.0.1-alpha.97-jl",
"openai": "~3.3"
},
"dependencies": {
"@deepkit/core": "1.0.1-alpha.97",
"@deepkit/type": "npm:@jefflaporte/[email protected]",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.195",
"axios": "^1.4.0",
"camelcase": "^6.3.0",
"debug": "^4.3.4",
"gpt-tokenizer": "^2.1.1",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"openai": "~3.3.0"
}
}