forked from module-federation/vite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.04 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
{
"name": "@module-federation/vite",
"version": "1.14.2",
"description": "Vite plugin for Module Federation",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.mts",
"exports": {
".": {
"types": {
"import": "./lib/index.d.mts",
"require": "./lib/index.d.cts"
},
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky install",
"fmt": "oxfmt src",
"fmt.check": "oxfmt --check src",
"dev": "tsdown --watch",
"build": "tsdown",
"clean": "pnpm -r exec rm -rf dist .__mf__temp __mf__virtual .vite node_modules/.vite",
"dev-rv": "pnpm clean && pnpm -filter 'examples-rust-vite*' run dev",
"preview-rv": "pnpm clean && pnpm -filter 'examples-rust-vite*' run preview",
"dev-vv": "pnpm clean && pnpm -filter 'examples-vite-vite*' run dev",
"preview-vv": "pnpm clean && pnpm run build:shared-lib && pnpm -filter 'examples-vite-vite*' --parallel run preview",
"preview-vv:ci": "pnpm run build:shared-lib && pnpm -filter 'examples-vite-vite*' --parallel run preview",
"build:shared-lib": "pnpm --filter @vite-vite/shared-lib run build",
"multi-example:ci": "pnpm -filter 'multi-example-*' --parallel run start",
"mixed-vv:1": "pnpm clean && pnpm -filter 'examples-vite-vite*' run mixed:1",
"mixed-vv:2": "pnpm clean && pnpm -filter 'examples-vite-vite*' run mixed:2",
"multi-example": "pnpm clean && pnpm --filter 'multi-example-*' --parallel run start",
"test": "vitest run --dir src",
"test:integration": "vitest run integration",
"e2e": "playwright test",
"changeset": "changeset",
"changeset:status": "changeset status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/vite.git"
},
"keywords": [
"vite",
"module federation",
"microfrontend"
],
"author": {
"name": "Giorgio Boa",
"email": "giorgiob.boa@gmail.com",
"url": "https://github.com/gioboa"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/module-federation/vite/issues"
},
"homepage": "https://github.com/module-federation/vite#readme",
"packageManager": "pnpm@10.28.2",
"overrides": {
"koa": "3.1.2"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"@module-federation/dts-plugin": "2.3.1",
"@module-federation/runtime": "2.3.1",
"@module-federation/sdk": "2.3.1",
"@rollup/pluginutils": "^5.3.0",
"defu": "^6.1.4",
"es-module-lexer": "^2.0.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.21",
"pathe": "^2.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.3",
"cjs-dep": "workspace:*",
"husky": "^9.1.7",
"mime-types": "^3.0.2",
"oxfmt": "^0.36.0",
"rollup": "^4.47.1",
"tsdown": "^0.21.0",
"vite": "^8.0.0",
"vitest": "^4.0.18"
}
}