@zeus-js/compiler 0.1.0-beta.5 → 0.1.0-beta.7
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/compiler.cjs.js +4 -4
- package/dist/compiler.cjs.prod.js +4 -4
- package/dist/compiler.d.ts +1 -1
- package/dist/compiler.esm-browser.js +5600 -14177
- package/dist/compiler.esm-browser.prod.js +5 -6
- package/dist/compiler.esm-bundler.js +9 -9
- package/dist/compiler.global.js +5600 -14177
- package/dist/compiler.global.prod.js +5 -6
- package/package.json +41 -35
package/package.json
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeus-js/compiler",
|
|
3
|
-
"version": "0.1.0-beta.5",
|
|
4
|
-
"description": "@zeus-js/compiler",
|
|
5
3
|
"type": "module",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
4
|
+
"version": "0.1.0-beta.7",
|
|
5
|
+
"description": "@zeus-js/compiler",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/baicie/zeus.git",
|
|
10
|
+
"directory": "packages/core/compiler"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public",
|
|
14
|
+
"provenance": true
|
|
15
|
+
},
|
|
16
|
+
"sideEffects": false,
|
|
15
17
|
"exports": {
|
|
16
18
|
".": {
|
|
17
19
|
"types": "./dist/compiler.d.ts",
|
|
@@ -25,10 +27,25 @@
|
|
|
25
27
|
}
|
|
26
28
|
}
|
|
27
29
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
30
|
+
"files": [
|
|
31
|
+
"index.js",
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@babel/core": "^8.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@babel/helper-plugin-utils": "^8.0.1",
|
|
39
|
+
"@babel/types": "^8.0.0",
|
|
40
|
+
"@baicie/logger": "^0.2.0",
|
|
41
|
+
"@zeus-js/shared": "0.1.0-beta.7"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@babel/core": "^8.0.0"
|
|
45
|
+
},
|
|
46
|
+
"author": "Baicie",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/baicie/zeus/issues"
|
|
32
49
|
},
|
|
33
50
|
"buildOptions": {
|
|
34
51
|
"name": "ZeusCompiler",
|
|
@@ -39,27 +56,16 @@
|
|
|
39
56
|
"global"
|
|
40
57
|
]
|
|
41
58
|
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": "^22.18.0 || >=24.11.0"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/baicie/zeus/tree/main/packages/core/compiler#readme",
|
|
63
|
+
"jsdelivr": "dist/compiler.global.js",
|
|
42
64
|
"keywords": [
|
|
43
65
|
"zeus"
|
|
44
66
|
],
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
},
|
|
50
|
-
"homepage": "https://github.com/baicie/zeus/tree/main/packages/core/compiler#readme",
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@babel/core": "^7.29.0",
|
|
53
|
-
"@types/babel__core": "7.20.5",
|
|
54
|
-
"@types/babel__helper-plugin-utils": "^7.10.3"
|
|
55
|
-
},
|
|
56
|
-
"peerDependencies": {
|
|
57
|
-
"@babel/core": "^7.29.0"
|
|
58
|
-
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@babel/helper-plugin-utils": "^7.29.7",
|
|
61
|
-
"@babel/types": "^7.29.0",
|
|
62
|
-
"@baicie/logger": "^0.2.0",
|
|
63
|
-
"@zeus-js/shared": "0.1.0-beta.5"
|
|
64
|
-
}
|
|
67
|
+
"main": "index.js",
|
|
68
|
+
"module": "dist/compiler.esm-bundler.js",
|
|
69
|
+
"types": "dist/compiler.d.ts",
|
|
70
|
+
"unpkg": "dist/compiler.global.js"
|
|
65
71
|
}
|