forked from synthetic-sciences/openscience
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.96 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
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
115
116
117
118
119
120
121
122
123
124
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@synsci/monorepo",
"description": "AI-powered CLI for ML research and development workflows",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"scripts": {
"setup": "bun run tooling/repo/setup.ts",
"dev": "bun --no-env-file run --cwd backend/cli --conditions=browser src/index.ts",
"dev:ui": "bun run --cwd frontend/workspace dev",
"typecheck": "turbo typecheck",
"test": "bun run --cwd backend/cli test",
"eval:launch:validate": "bun evals/launch/validate.ts",
"eval:launch:capture": "bun evals/launch/capture.ts capture",
"eval:launch:summary": "bun evals/launch/capture.ts summary",
"build": "bun run --cwd backend/cli build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:ui": "cd frontend/ui && bun test",
"test:workspace": "cd frontend/workspace && bun test",
"test:sdk": "cd tooling/sdk/js && bun test",
"check": "bun run format:check && bun run typecheck && bun run test && bun run test:ui && bun run test:workspace && bun run test:sdk && bun run test:docs",
"check:fast": "bun run format:check && turbo typecheck --filter=@synsci/openscience",
"prepare": "husky",
"test:docs": "bun run --cwd frontend/docs check && bun run --cwd frontend/docs test"
},
"workspaces": {
"packages": [
"backend/cli",
"frontend/workspace",
"frontend/desktop",
"frontend/ui",
"frontend/docs",
"tooling/*",
"tooling/sdk/js"
],
"catalog": {
"@types/bun": "1.3.14",
"ulid": "3.0.1",
"@kobalte/core": "0.13.11",
"@types/luxon": "3.7.1",
"@types/node": "22.13.9",
"@tsconfig/node22": "22.0.2",
"@tsconfig/bun": "1.0.9",
"@pierre/diffs": "1.0.2",
"@solid-primitives/storage": "4.3.3",
"@tailwindcss/vite": "4.1.11",
"diff": "8.0.4",
"dompurify": "3.4.14",
"ai": "5.0.119",
"hono": "4.12.34",
"hono-openapi": "1.1.2",
"fuzzysort": "3.1.0",
"luxon": "3.6.1",
"marked": "17.0.1",
"marked-shiki": "1.2.1",
"@playwright/test": "1.62.1",
"typescript": "5.8.2",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"zod": "4.1.8",
"remeda": "2.26.0",
"shiki": "3.20.0",
"solid-list": "0.3.0",
"tailwindcss": "4.1.11",
"vite": "7.3.6",
"@solidjs/meta": "0.29.4",
"@solidjs/router": "0.15.4",
"solid-js": "1.9.15",
"vite-plugin-solid": "2.11.10"
}
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"husky": "9.1.7",
"prettier": "3.9.6",
"turbo": "2.10.12"
},
"dependencies": {
"@synsci/script": "workspace:*",
"@synsci/sdk": "workspace:*",
"typescript": "catalog:"
},
"repository": {
"type": "git",
"url": "https://github.com/synthetic-sciences/openscience"
},
"license": "Apache-2.0",
"prettier": {
"semi": false,
"printWidth": 120
},
"trustedDependencies": [
"esbuild",
"protobufjs",
"tree-sitter",
"tree-sitter-bash",
"web-tree-sitter"
],
"overrides": {
"@babel/core": "7.29.6",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"body-parser": "2.3.0",
"brace-expansion": "5.0.9",
"diff": "8.0.4",
"fast-uri": "3.1.5",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"postcss": "8.5.23",
"socket.io-parser": "4.2.7",
"tar": "7.5.21",
"undici": "7.25.0",
"ws": "8.21.0"
},
"patchedDependencies": {
"@openrouter/ai-sdk-provider@1.5.2": "tooling/patches/@openrouter%2Fai-sdk-provider@1.5.2.patch",
"ghostty-web@0.3.0": "tooling/patches/ghostty-web@0.3.0.patch",
"@ai-sdk/anthropic@2.0.57": "tooling/patches/@ai-sdk%2Fanthropic@2.0.57.patch",
"@ai-sdk/openai@2.0.89": "tooling/patches/@ai-sdk%2Fopenai@2.0.89.patch",
"@ai-sdk/xai@2.0.51": "tooling/patches/@ai-sdk%2Fxai@2.0.51.patch",
"gray-matter@4.0.3": "tooling/patches/gray-matter@4.0.3.patch"
}
}