-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "react-bndl",
"version": "1.0.3",
"description": "A library that allows users to split their React application into multiple bundles and load them each dynamically.",
"keywords": [
"React",
"bundle",
"Webpack"
],
"author": "Bradley Peters",
"license": "MIT",
"bugs": "https://github.com/brdlyptrs/react-bndl/issues",
"type": "module",
"main": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dis/index.cjs"
},
"files": [
"LICENSE",
"README.md",
"lib/README.md",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/brdlyptrs/react-bndl.git",
"directory": "lib"
},
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"start": "pnpm --filter @bndl/demo run start",
"start:server": "pnpm --filter @bndl/demo run start:server",
"build:lib": "pnpm --filter @bndl/lib run build",
"build:app": "pnpm --filter @bndl/demo run build:prod",
"fix:lint": "pnpm --filter @bndl/* run fix:lint",
"test:lint": "pnpm --filter @bndl/* run test:lint",
"test:types": "pnpm --filter @bndl/* run test:types",
"test:components": "pnpm --filter @bndl/lib run test:components",
"test:integration": "playwright test -c playwright-ct.config.ts",
"test:end-to-end": "playwright test -c playwright.config.ts"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@bndl/demo": "workspace:^",
"@bndl/lib": "workspace:^",
"@playwright/experimental-ct-react": "^1.33.0",
"@playwright/test": "^1.33.0",
"@types/node": "^25.0.10"
}
}