-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "Experiment",
"description": "🔬 Experiment is a feature-rich chat interface for Large Language Models (LLMs) like Anthropic, OpenAI, and Mistral.",
"keywords": ["inference", "experiment-tracking", "llm"],
"repository": "github:actualwitch/experiment",
"version": "0.5.0",
"author": "Ade あで Fisher",
"license": "MIT",
"private": true,
"module": "src/entry/server.tsx",
"type": "module",
"scripts": {
"build:bin": "bun scripts/build.bin.ts",
"build:spa": "bun scripts/build.spa.tsx",
"start": "bun i && OPEN_ON_START=true bun scripts/start.ts",
"dev": "bun i && bun update && DEBUG=true OPEN_ON_START=true bun scripts/start.ts",
"dev:spa": "REALM=spa bun --watch run src/entry/server.spa.tsx",
"format": "bunx biome format --write ./src/*",
"format:prettier": "prettier ./src/* --write",
"lint": "bunx biome lint --write .",
"test:unit": "bun test src/feature",
"test:e2e": "bunx playwright test",
"playwright:update": "bunx playwright install"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@playwright/test": "latest",
"@types/bun": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/selenium-webdriver": "latest",
"playwright": "latest",
"prettier": "latest"
},
"peerDependencies": {
"typescript": "next"
},
"dependencies": {
"@anthropic-ai/sdk": "latest",
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mistralai/mistralai": "latest",
"csvtojson": "latest",
"isomorphic-dompurify": "latest",
"jotai": "latest",
"jotai-effect": "latest",
"jotai-optics": "latest",
"marked": "latest",
"monaco-editor": "latest",
"openai": "latest",
"polished": "latest",
"react": "canary",
"react-aria": "latest",
"react-dom": "canary",
"react-router": "latest",
"react-stately": "latest",
"runtypes": "latest",
"shevyjs": "latest",
"temporal-polyfill": "latest",
"true-myth": "latest"
}
}