-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.2 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
{
"name": "@module-federation/vinext",
"version": "0.0.0",
"description": "Module Federation integration for vinext",
"homepage": "https://github.com/module-federation/vinext#readme",
"bugs": {
"url": "https://github.com/module-federation/vinext/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/vinext.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prepare": "husky install",
"fmt": "oxfmt *",
"fmt.check": "oxfmt --check *",
"build": "pnpm run build:apps",
"build:package": "tsc -p tsconfig.json",
"build:apps": "pnpm run build:package && pnpm --filter 'vinext-*' build",
"changeset": "changeset",
"check": "pnpm run typecheck && pnpm test && pnpm run build:apps",
"dev": "pnpm run build:package && pnpm --filter 'vinext-*' --parallel dev",
"dev:host": "pnpm run build:package && pnpm --filter vinext-host dev",
"dev:island": "pnpm --filter vinext-island dev",
"dev:remote": "pnpm --filter vinext-remote dev",
"preview": "pnpm run build:apps && pnpm --filter 'vinext-*' --parallel preview",
"release": "pnpm run build:package && changeset publish",
"test": "pnpm run build:package && node --test",
"test:e2e": "playwright test --config=playwright.config.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"version": "changeset version && pnpm install --lockfile-only --ignore-scripts",
"prepack": "pnpm run build:package"
},
"dependencies": {
"@module-federation/vite": "catalog:"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@playwright/test": "1.62.0",
"husky": "9.1.7",
"oxfmt": "0.63.0",
"typescript": "^7.0.2"
},
"peerDependencies": {
"vinext": ">=1.0.0-beta.3"
},
"engines": {
"node": ">=22.22.2"
},
"packageManager": "pnpm@10.33.2"
}