@ikaros-cli/ikaros 2.2.0 → 2.3.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/bin.mjs +2 -2
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +1 -0
- package/dist/compile-pipeline-DuG5l8nW.mjs +13 -0
- package/dist/index.d.mts +192 -41
- package/dist/index.mjs +1 -11
- package/package.json +76 -76
- package/readme.md +316 -310
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ikaros-cli/ikaros",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"publishConfig": {
|
|
7
|
-
"registry": "https://registry.npmjs.org/",
|
|
8
|
-
"access": "public"
|
|
9
|
-
},
|
|
10
|
-
"homepage": "https://github.com/umbrella22/ikaros#readme",
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/umbrella22/ikaros.git"
|
|
14
|
-
},
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/umbrella22/ikaros/issues"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"dev": "tsdown --watch",
|
|
20
|
-
"dts": "tsdown --dts",
|
|
21
|
-
"build": "tsdown",
|
|
22
|
-
"test": "vitest run"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [
|
|
25
|
-
"vue",
|
|
26
|
-
"rspack"
|
|
27
|
-
],
|
|
28
|
-
"author": "sky <https://github.com/umbrella22>",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"main": "dist/index.mjs",
|
|
31
|
-
"module": "dist/index.mjs",
|
|
32
|
-
"types": "dist/index.d.mts",
|
|
33
|
-
"bin": {
|
|
34
|
-
"ikaros": "bin.mjs"
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"dist",
|
|
38
|
-
"bin.mjs",
|
|
39
|
-
"readme.md"
|
|
40
|
-
],
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">=22.0.0",
|
|
43
|
-
"npm": ">=9.5.0"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@module-federation/enhanced": "^2.
|
|
47
|
-
"@rsdoctor/rspack-plugin": "^1.5.
|
|
48
|
-
"@rspack/core": "^1.7.
|
|
49
|
-
"@rspack/dev-server": "^1.2.1",
|
|
50
|
-
"chalk": "^5.6.2",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"detect-port": "^2.1.0",
|
|
56
|
-
"dotenv": "^17.
|
|
57
|
-
"easy-table": "^1.2.0",
|
|
58
|
-
"es-toolkit": "^1.
|
|
59
|
-
"fs-extra": "^11.3.
|
|
60
|
-
"glob": "^13.0.
|
|
61
|
-
"less-loader": "^12.3.
|
|
62
|
-
"listr2": "^10.1
|
|
63
|
-
"ora": "^9.3.0",
|
|
64
|
-
"oxc-transform": "^0.
|
|
65
|
-
"picocolors": "^1.1.1",
|
|
66
|
-
"pretty-bytes": "^7.1.0",
|
|
67
|
-
"sass-loader": "^16.0.7",
|
|
68
|
-
"stylus-loader": "^8.1.3",
|
|
69
|
-
"vue-style-loader": "^4.1.3",
|
|
70
|
-
"yaml": "^2.8.
|
|
71
|
-
"zod": "^4.3.6"
|
|
72
|
-
},
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@types/fs-extra": "^11.0.4",
|
|
75
|
-
"vitest": "^4.
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ikaros-cli/ikaros",
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"registry": "https://registry.npmjs.org/",
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/umbrella22/ikaros#readme",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/umbrella22/ikaros.git"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/umbrella22/ikaros/issues"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "tsdown --watch",
|
|
20
|
+
"dts": "tsdown --dts",
|
|
21
|
+
"build": "tsdown",
|
|
22
|
+
"test": "vitest run"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"vue",
|
|
26
|
+
"rspack"
|
|
27
|
+
],
|
|
28
|
+
"author": "sky <https://github.com/umbrella22>",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"main": "dist/index.mjs",
|
|
31
|
+
"module": "dist/index.mjs",
|
|
32
|
+
"types": "dist/index.d.mts",
|
|
33
|
+
"bin": {
|
|
34
|
+
"ikaros": "bin.mjs"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"bin.mjs",
|
|
39
|
+
"readme.md"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=22.0.0",
|
|
43
|
+
"npm": ">=9.5.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@module-federation/enhanced": "^2.3.0",
|
|
47
|
+
"@rsdoctor/rspack-plugin": "^1.5.5",
|
|
48
|
+
"@rspack/core": "^1.7.10",
|
|
49
|
+
"@rspack/dev-server": "^1.2.1",
|
|
50
|
+
"chalk": "^5.6.2",
|
|
51
|
+
"chokidar": "^5.0.0",
|
|
52
|
+
"cli-cursor": "^5.0.0",
|
|
53
|
+
"commander": "^14.0.3",
|
|
54
|
+
"compression-webpack-plugin": "^12.0.0",
|
|
55
|
+
"detect-port": "^2.1.0",
|
|
56
|
+
"dotenv": "^17.3.1",
|
|
57
|
+
"easy-table": "^1.2.0",
|
|
58
|
+
"es-toolkit": "^1.45.1",
|
|
59
|
+
"fs-extra": "^11.3.4",
|
|
60
|
+
"glob": "^13.0.6",
|
|
61
|
+
"less-loader": "^12.3.2",
|
|
62
|
+
"listr2": "^10.2.1",
|
|
63
|
+
"ora": "^9.3.0",
|
|
64
|
+
"oxc-transform": "^0.121.0",
|
|
65
|
+
"picocolors": "^1.1.1",
|
|
66
|
+
"pretty-bytes": "^7.1.0",
|
|
67
|
+
"sass-loader": "^16.0.7",
|
|
68
|
+
"stylus-loader": "^8.1.3",
|
|
69
|
+
"vue-style-loader": "^4.1.3",
|
|
70
|
+
"yaml": "^2.8.3",
|
|
71
|
+
"zod": "^4.3.6"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/fs-extra": "^11.0.4",
|
|
75
|
+
"vitest": "^4.1.2"
|
|
76
|
+
}
|
|
77
77
|
}
|