@zeus-js/bundler-plugin 0.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundler-plugin.cjs.js +506 -0
- package/dist/bundler-plugin.cjs.prod.js +506 -0
- package/dist/bundler-plugin.d.ts +130 -0
- package/dist/bundler-plugin.esm-bundler.js +611 -0
- package/dist/outputPlugins/manifest.cjs.js +27 -0
- package/dist/outputPlugins/manifest.cjs.prod.js +27 -0
- package/dist/outputPlugins/manifest.d.ts +3 -0
- package/dist/outputPlugins/manifest.js +23 -0
- package/dist/outputPlugins/manifest.prod.js +23 -0
- package/dist/vite.cjs.js +565 -0
- package/dist/vite.cjs.prod.js +565 -0
- package/dist/vite.d.ts +6 -0
- package/dist/vite.js +675 -0
- package/dist/vite.prod.js +675 -0
- package/index.js +4 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zeus-js/bundler-plugin",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "Zeus bundler plugin host",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"module": "dist/bundler-plugin.esm-bundler.js",
|
|
8
|
+
"types": "dist/bundler-plugin.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/bundler-plugin.d.ts",
|
|
16
|
+
"node": {
|
|
17
|
+
"production": "./dist/bundler-plugin.cjs.prod.js",
|
|
18
|
+
"development": "./dist/bundler-plugin.cjs.js",
|
|
19
|
+
"default": "./index.js"
|
|
20
|
+
},
|
|
21
|
+
"module": "./dist/bundler-plugin.esm-bundler.js",
|
|
22
|
+
"import": "./dist/bundler-plugin.esm-bundler.js",
|
|
23
|
+
"require": "./index.js"
|
|
24
|
+
},
|
|
25
|
+
"./vite": {
|
|
26
|
+
"types": "./dist/vite.d.ts",
|
|
27
|
+
"import": "./dist/vite.js"
|
|
28
|
+
},
|
|
29
|
+
"./manifest": {
|
|
30
|
+
"types": "./dist/outputPlugins/manifest.d.ts",
|
|
31
|
+
"import": "./dist/outputPlugins/manifest.js"
|
|
32
|
+
},
|
|
33
|
+
"./*": "./*"
|
|
34
|
+
},
|
|
35
|
+
"sideEffects": false,
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/baicie/zeus"
|
|
39
|
+
},
|
|
40
|
+
"buildOptions": {
|
|
41
|
+
"name": "ZeusBundlerPlugin",
|
|
42
|
+
"formats": [
|
|
43
|
+
"esm-bundler",
|
|
44
|
+
"cjs"
|
|
45
|
+
],
|
|
46
|
+
"additionalEntries": [
|
|
47
|
+
{
|
|
48
|
+
"entry": "vite.ts",
|
|
49
|
+
"output": "dist/vite.js"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"entry": "outputPlugins/manifest.ts",
|
|
53
|
+
"output": "dist/outputPlugins/manifest.js"
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@babel/core": "^7.29.0",
|
|
59
|
+
"fast-glob": "^3.3.3",
|
|
60
|
+
"picomatch": "^4.0.4",
|
|
61
|
+
"@zeus-js/compiler": "0.1.0-beta.0",
|
|
62
|
+
"@zeus-js/component-analyzer": "0.1.0-beta.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"rollup": "^4.0.0",
|
|
66
|
+
"vite": "^8.0.5"
|
|
67
|
+
},
|
|
68
|
+
"peerDependenciesMeta": {
|
|
69
|
+
"rollup": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"vite": {
|
|
73
|
+
"optional": true
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"keywords": [
|
|
77
|
+
"zeus",
|
|
78
|
+
"vite",
|
|
79
|
+
"rollup",
|
|
80
|
+
"rolldown",
|
|
81
|
+
"web-components"
|
|
82
|
+
],
|
|
83
|
+
"author": "Baicie",
|
|
84
|
+
"license": "MIT"
|
|
85
|
+
}
|