forked from daydreamsai/daydreams
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "daydreams",
"version": "0.0.0",
"workspaces": [
"packages/*",
"clients/*",
"examples/*"
],
"scripts": {
"test": "pnpm -r test",
"test:core": "pnpm --filter @daydreamsai/core test",
"test:watch": "pnpm -r test --watch",
"build:packages": "./scripts/build.sh",
"build:packages:watch": "./scripts/build.sh --watch",
"release": "./scripts/release.sh",
"release:dry-run": "./scripts/release.sh --dry-run",
"clean": "./scripts/clean.sh",
"clean:dry-run": "./scripts/clean.sh --dry-run",
"clean:deps": "./scripts/clean.sh --deps-only",
"clean:builds": "./scripts/clean.sh --builds-only",
"prettier-check": "pnpx prettier --check packages",
"prettier": "pnpx prettier --write packages",
"knip": "knip",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run docs:build",
"docs:start": "cd docs && bun run start",
"docs:build:api": "typedoc"
},
"devDependencies": {
"@types/bun": "^1.2.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"knip": "^5.43.6",
"typedoc": "^0.28.2",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "catalog:",
"husky": "9.1.7"
},
"resolutions": {
"@mysten/sui": "1.7.0"
},
"dependencies": {
"@ai-sdk/anthropic": "catalog:",
"@ai-sdk/groq": "catalog:",
"@ai-sdk/openai": "catalog:",
"@ai-sdk/provider": "catalog:",
"@ai-sdk/ui-utils": "catalog:",
"ai": "catalog:"
}
}