-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.94 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
107
108
109
110
111
112
113
114
{
"name": "hyv",
"version": "1.0.0",
"private": true,
"description": "Hyv is a streamlined API for integrating and managing diverse AI models.",
"keywords": [],
"license": "AGPL",
"author": "Gregor Adams",
"type": "module",
"main": "index.js",
"directories": {
"doc": "pages",
"example": "examples"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npx lerna run build",
"build:next": "next build",
"clean": "npx lerna run clean",
"demo:ai-debate": "ts-node-esm examples/ai-presidential-debate.ts",
"demo:auto-book": "ts-node-esm examples/auto-book.ts",
"demo:auto-tweet": "ts-node-esm examples/auto-tweet.ts",
"demo:autodocs": "ts-node-esm examples/autodocs.ts",
"demo:book": "ts-node-esm examples/book.ts",
"demo:chaining": "ts-node-esm examples/chaining.ts",
"demo:code-optimizer": "ts-node-esm examples/code-optimizer.ts",
"demo:dall-e": "ts-node-esm examples/dall-e.ts",
"demo:functions": "ts-node-esm examples/functions.ts",
"demo:jury": "ts-node-esm examples/jury.ts",
"demo:math": "ts-node-esm examples/math.ts",
"demo:parallel": "ts-node-esm examples/parallel.ts",
"demo:persona": "ts-node-esm examples/persona.ts",
"demo:simple": "ts-node-esm examples/simple.ts",
"demo:stable-diffusion": "ts-node-esm examples/stable-diffusion.ts",
"demo:stephen-king": "ts-node-esm examples/stephen-king.ts",
"demo:stream": "ts-node-esm examples/stream.ts",
"demo:super-simple": "ts-node-esm examples/super-simple.ts",
"demo:weaviate": "ts-node-esm examples/weaviate.ts",
"dev:next": "next",
"dev:setup-weaviate": "ts-node-esm templates/setup-weaviate.ts",
"lint": "eslint packages/**/*.ts",
"ncu": "npx npm-check-updates --deep",
"ncu:minor": "npm run ncu -- -t minor",
"ncu:patch": "npm run ncu -- -t patch",
"prepublishOnly": "npm run build",
"prerelease": "npm run build",
"release": "lerna publish --conventional-commits",
"prerelease:beta": "npm run build",
"release:beta": "lerna publish --canary --preid beta --pre-dist-tag beta",
"start:next": "next start",
"template:pages": "ts-node-esm templates/pages.ts",
"test": "jest",
"watch": "npx lerna run watch --parallel"
},
"dependencies": {
"@dotlottie/react-player": "^1.0.1",
"@emotion/react": "11.11.1",
"@emotion/styled": "^11.11.0",
"@jest/globals": "^29.6.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@mui/base": "^5.0.0-beta.7",
"@mui/icons-material": "^5.14.0",
"@mui/joy": "5.0.0-alpha.87",
"@next/mdx": "^13.4.10",
"@sindresorhus/slugify": "^2.2.1",
"@swc/core": "^1.3.69",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.3",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"axios": "^1.4.0",
"dayjs": "^1.11.9",
"dotenv": "16.3.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"globby": "^13.2.2",
"graphql": "16.7.1",
"jest": "^29.6.1",
"jest-config": "^29.6.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"jotai": "^2.2.2",
"lerna": "^7.1.3",
"markdown-toc": "^1.2.0",
"next": "^13.4.10",
"nx": "^16.5.2",
"nx-cloud": "^16.1.0",
"prettier": "^3.0.0",
"prism-theme-vars": "^0.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"semver": "^7.5.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"type-fest": "3.13.0",
"typescript": "^5.1.6",
"weaviate-ts-client": "^1.4.0"
}
}