-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.67 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.67 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
{
"name": "stagewise",
"private": true,
"scripts": {
"build": "turbo run build",
"build:apps": "turbo run build --filter='./apps/*'",
"build:packages": "turbo run build --filter='./packages/*'",
"build:toolbar": "turbo run build --filter='./toolbar/*'",
"build:plugins": "turbo run build --filter='./plugins/*'",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"clean:browser-data": "pnpm -F stagewise clean-data",
"dev": "turbo watch dev --concurrency 20",
"dev:playgrounds": "turbo watch dev --filter='./playgrounds/*' --concurrency 20",
"dev:examples": "turbo watch dev --filter='./examples/*' --concurrency 20",
"dev:toolbar": "turbo watch dev --filter='./toolbar/*' --concurrency 20",
"dev:plugins": "turbo watch dev --filter='./plugins/*' --concurrency 20",
"check": "biome check .",
"check:fix": "biome check . --write",
"sherif": "pnpm dlx sherif --fix",
"typecheck": "turbo run typecheck",
"typecheck:scripts": "tsc --project scripts/release/tsconfig.json --noEmit",
"test": "turbo run test",
"copy-readme": "ts-node --esm scripts/copy-readme.ts",
"version:browser": "tsx scripts/release/index.ts --package browser",
"version:browser:alpha": "tsx scripts/release/index.ts --package browser --channel alpha",
"version:browser:beta": "tsx scripts/release/index.ts --package browser --channel beta",
"version:browser:release": "tsx scripts/release/index.ts --package browser --channel release",
"version:karton": "tsx scripts/release/index.ts --package karton",
"extract:compression-test-data": "tsx scripts/experiments/extract-compression-test-data.ts"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/config-pnpm-scopes": "^20.1.0",
"@stagewise/typescript-config": "workspace:*",
"@types/node": "22.15.2",
"@types/semver": "^7.7.1",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"conventional-recommended-bump": "^11.2.0",
"git-raw-commits": "^5.0.0",
"lefthook": "^1.12.2",
"semver": "^7.7.3",
"ts-node": "10.9.2",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"@libsql/darwin-arm64",
"@libsql/darwin-x64",
"@libsql/linux-arm64-gnu",
"@libsql/linux-arm64-musl",
"@libsql/linux-x64-gnu",
"@libsql/linux-x64-musl",
"@libsql/win32-x64-msvc",
"@parcel/watcher",
"@posthog/cli",
"@swc/core",
"bufferutil",
"core-js",
"core-js-pure",
"electron",
"electron-winstaller",
"esbuild",
"fs-xattr",
"lefthook",
"libsql",
"macos-alias",
"nucleo-core-fill-24",
"nucleo-core-outline-24",
"nucleo-micro-bold",
"nucleo-ui-fill-18",
"nucleo-ui-fill-duo-18",
"nucleo-ui-outline-18",
"nucleo-ui-outline-duo-18",
"sharp",
"utf-8-validate"
],
"overrides": {
"lucide-react": "0.554.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/glob": "8.1.0",
"@types/minimatch": "5.1.2"
}
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.77",
"@ai-sdk/azure": "^3.0.42",
"@ai-sdk/google-vertex": "^4.0.80",
"@ai-sdk/openai-compatible": "^2.0.35",
"@better-auth/electron": "^1.5.3",
"@streamdown/math": "^1.0.2",
"better-auth": "^1.5.3",
"gray-matter": "^4.0.3",
"tsx": "^4.20.3"
},
"config": {
"forge": "./forge.config.mts"
}
}