-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "react-app-element",
"version": "0.1.0",
"description": "Custom element base class for embedding full React applications in any host page",
"author": "dvegap95",
"type": "module",
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/dvegap95/react-app-element.git"
},
"keywords": [
"react",
"react-embed",
"web-components",
"web-component",
"webcomponent",
"custom-elements",
"custom-element",
"react-to-web-component",
"micro-frontend",
"microfrontend",
"microfrontends",
"embed",
"shadow-dom",
"framework-agnostic"
],
"homepage": "https://github.com/dvegap95/react-app-element#readme",
"bugs": {
"url": "https://github.com/dvegap95/react-app-element/issues"
},
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext ts,tsx",
"prepack": "npm run build"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^26.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9"
}
}