-
-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "@module-federation/treeshake-server",
"version": "2.1.0",
"description": "Build service powered by Hono that installs dependencies, builds with Rspack, and uploads artifacts.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"treeshake-server": "bin/treeshake-server.js"
},
"scripts": {
"build": "rslib build && node scripts/copy-frontend.js",
"lint": "biome lint src scripts",
"prestart": "pnpm exec turbo run build --filter=@module-federation/treeshake-server",
"dev": "node scripts/dev.js",
"start": "node dist/server.js",
"test": "node ../../scripts/ensure-playwright.js && rstest"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "1.19.10",
"@hono/zod-validator": "0.7.4",
"dotenv": "16.4.5",
"hono": "4.12.7",
"json-stable-stringify": "1.3.0",
"nanoid": "5.1.6",
"p-limit": "^7.2.0",
"pino": "10.1.0",
"undici": "6.23.0",
"zod": "4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.3.3",
"@playwright/test": "^1.57.0",
"@rstest/core": "^0.6.5",
"@types/node": "^20.11.30",
"@vercel/nft": "^1.1.1",
"pino-pretty": "^13.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.19.5",
"pnpm": ">=10.18.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/treeshake-server"
}
}