-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.69 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.69 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
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
{
"name": "Experiment",
"description": "🔬 Experiment is an experiment is an experiment is an experiment is an experiment is an e̴x̷p̶e̶r̶i̶m̸e̸n̸t̴ ̷i̵s̴ ̷a̵n̷ è̷̜x̴̝͝p̵̨̐e̴̯̐r̴͔̍ì̸̻m̴̛͎e̵̥̔n̶̠̎t̷̠͝ ̶̼̳̕ǐ̷̞͍͂s̷͍̈́ ̶̫̀a̵̠͌n̵̲͊ ̶̣̼̆ḛ̸̀x̵̰͋p̵͉̺̎e̶̛͈̮ř̸̜̜̅ì̵̜̠͗ṃ̴̼͆ė̴̮n̶̪̈́t̸̢͖͋͂ ",
"keywords": [
"inference",
"experiment-tracking",
"llm"
],
"repository": "github:actualwitch/experiment",
"version": "1.0.0",
"author": "Ade あで Fisher",
"contributors": [
"Claude (AI Assistant)"
],
"license": "MIT",
"private": true,
"module": "src/entry/server.tsx",
"type": "module",
"scripts": {
"build:bin": "bun scripts/build.bin.ts",
"build:ssg": "bun scripts/build.ssg.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:ssg": "REALM=ssg bun --watch run src/entry/server.ssg.tsx",
"format": "bunx biome format --write ./src/*",
"format:prettier": "prettier --write ./src/*",
"lint": "bunx biome lint --write .",
"test:unit": "bun test src/feature",
"test:e2e": "bunx playwright test",
"playwright:update": "bunx playwright install",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@playwright/test": "latest",
"@types/bun": "latest",
"@types/luxon": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/selenium-webdriver": "latest",
"husky": "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",
"@modelcontextprotocol/sdk": "latest",
"@shikijs/colorized-brackets": "latest",
"@tanstack/react-virtual": "latest",
"@xterm/xterm": "latest",
"csvtojson": "latest",
"ignore": "latest",
"jotai": "latest",
"jotai-effect": "latest",
"jotai-optics": "latest",
"lucide-react": "latest",
"luxon": "latest",
"marked": "latest",
"marked-react": "latest",
"monaco-editor": "latest",
"nanoid": "latest",
"openai": "latest",
"polished": "latest",
"react": "canary",
"react-aria": "latest",
"react-dom": "canary",
"react-router": "latest",
"react-stately": "latest",
"runtypes": "latest",
"shevyjs": "latest",
"shiki": "latest",
"temporal-polyfill": "latest",
"true-myth": "latest",
"ts-pattern": "latest"
}
}