-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.26 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.26 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
{
"name": "astro-module-federation",
"private": true,
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "pnpm --filter @module-federation/astro build && turbo run dev --filter=example-remote --filter=example-host",
"dev:host": "pnpm --filter @module-federation/astro build && turbo run dev --filter=example-host",
"dev:remote": "pnpm --filter @module-federation/astro build && turbo run dev --filter=example-remote",
"build:package": "pnpm --filter @module-federation/astro build",
"build": "turbo run build --filter=@module-federation/astro",
"build:host": "turbo run build --filter=example-host",
"build:remote": "turbo run build --filter=example-remote",
"lint": "turbo run lint --filter=@module-federation/astro",
"fmt": "turbo run fmt --filter=@module-federation/astro",
"fmt.check": "turbo run fmt.check --filter=@module-federation/astro",
"test": "turbo run test --filter=@module-federation/astro",
"typecheck": "turbo run typecheck --filter=@module-federation/astro",
"changeset": "changeset",
"changeset:status": "changeset status"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"turbo": "^2.5.6"
}
}