-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"private": true,
"packageManager": "[email protected]",
"name": "@actor-core/workspace",
"workspaces": [
"packages/*",
"packages/platforms/*",
"packages/misc/*",
"examples/*",
"examples/*/platforms/*"
],
"scripts": {
"start": "npx turbo watch build",
"dev": "npx turbo watch build",
"dev-types": "npx turbo watch check-types",
"build": "npx turbo build",
"check-types": "npx turbo check-types",
"fmt": "yarn biome check --write .",
"dev-docs": "cd docs && yarn dlx mintlify@latest dev",
"dev-docs-middleware": "cd packages/misc/docs-middleware && yarn dev",
"deploy-docs-middleware": "cd packages/misc/docs-middleware && yarn deploy",
"docs-broken-links": "cd docs && yarn dlx mintlify@latest broken-links"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/ws": "^8.5.14",
"dedent": "^1.5.3",
"lefthook": "^1.6.12",
"turbo": "^2.0.1"
},
"resolutions": {
"react": "^19",
"react-dom": "^19",
"hono": "^4.7.0"
}
}