@elek-io/core 0.15.2 → 0.16.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/astro/index.astro.d.mts +60 -0
- package/dist/astro/index.astro.mjs +3864 -0
- package/dist/astro/index.astro.mjs.map +1 -0
- package/dist/browser/index.browser.d.ts +172 -61
- package/dist/browser/index.browser.js +1 -1
- package/dist/browser/index.browser.js.map +1 -1
- package/dist/cli/{index.cli.js → index.cli.mjs} +304 -184
- package/dist/node/chunk-DQk6qfdC.mjs +18 -0
- package/dist/node/{index.node.d.ts → index.node.d.mts} +161 -50
- package/dist/node/{index.node.js → index.node.mjs} +134 -134
- package/dist/node/index.node.mjs.map +1 -0
- package/package.json +44 -30
- package/dist/node/chunk-Bp6m_JJh.js +0 -13
- package/dist/node/index.node.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elek-io/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Handles core functionality of elek.io Projects like file IO and version control.",
|
|
5
5
|
"homepage": "https://elek.io",
|
|
6
6
|
"repository": "https://github.com/elek-io/core",
|
|
@@ -9,67 +9,81 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"bin": {
|
|
12
|
-
"elek": "./dist/cli/index.cli.
|
|
12
|
+
"elek": "./dist/cli/index.cli.mjs"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist/node",
|
|
16
|
-
"dist/browser"
|
|
16
|
+
"dist/browser",
|
|
17
|
+
"dist/astro"
|
|
17
18
|
],
|
|
18
19
|
"exports": {
|
|
19
20
|
".": {
|
|
20
21
|
"node": {
|
|
21
22
|
"import": {
|
|
22
|
-
"types": "./dist/node/index.node.d.
|
|
23
|
-
"default": "./dist/node/index.node.
|
|
23
|
+
"types": "./dist/node/index.node.d.mts",
|
|
24
|
+
"default": "./dist/node/index.node.mjs"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"import": {
|
|
27
28
|
"types": "./dist/browser/index.browser.d.ts",
|
|
28
29
|
"default": "./dist/browser/index.browser.js"
|
|
29
30
|
}
|
|
31
|
+
},
|
|
32
|
+
"./astro": {
|
|
33
|
+
"import": {
|
|
34
|
+
"types": "./dist/astro/index.astro.d.mts",
|
|
35
|
+
"default": "./dist/astro/index.astro.mjs"
|
|
36
|
+
}
|
|
30
37
|
}
|
|
31
38
|
},
|
|
32
39
|
"dependencies": {
|
|
33
40
|
"@commander-js/extra-typings": "14.0.0",
|
|
34
|
-
"@hono/node-server": "1.19.
|
|
35
|
-
"@hono/zod-openapi": "1.
|
|
36
|
-
"@scalar/hono-api-reference": "0.
|
|
41
|
+
"@hono/node-server": "1.19.11",
|
|
42
|
+
"@hono/zod-openapi": "1.2.2",
|
|
43
|
+
"@scalar/hono-api-reference": "0.10.0",
|
|
37
44
|
"@sindresorhus/slugify": "3.0.0",
|
|
38
|
-
"chokidar": "
|
|
45
|
+
"chokidar": "5.0.0",
|
|
39
46
|
"code-block-writer": "13.0.3",
|
|
40
|
-
"commander": "14.0.
|
|
41
|
-
"fs-extra": "11.3.
|
|
42
|
-
"hono": "4.
|
|
47
|
+
"commander": "14.0.3",
|
|
48
|
+
"fs-extra": "11.3.4",
|
|
49
|
+
"hono": "4.12.5",
|
|
43
50
|
"mime": "4.1.0",
|
|
44
|
-
"p-queue": "9.
|
|
45
|
-
"semver": "7.7.
|
|
46
|
-
"tsdown": "0.
|
|
51
|
+
"p-queue": "9.1.0",
|
|
52
|
+
"semver": "7.7.4",
|
|
53
|
+
"tsdown": "0.21.0",
|
|
47
54
|
"uuid": "13.0.0",
|
|
48
|
-
"winston": "3.
|
|
55
|
+
"winston": "3.19.0",
|
|
49
56
|
"winston-daily-rotate-file": "5.0.0",
|
|
50
|
-
"zod": "4.
|
|
57
|
+
"zod": "4.3.6"
|
|
51
58
|
},
|
|
52
59
|
"devDependencies": {
|
|
53
|
-
"@changesets/cli": "2.
|
|
54
|
-
"@eslint/js": "
|
|
55
|
-
"@faker-js/faker": "10.
|
|
56
|
-
"@tsconfig/
|
|
57
|
-
"@tsconfig/strictest": "2.0.
|
|
60
|
+
"@changesets/cli": "2.30.0",
|
|
61
|
+
"@eslint/js": "10.0.1",
|
|
62
|
+
"@faker-js/faker": "10.3.0",
|
|
63
|
+
"@tsconfig/node24": "24.0.4",
|
|
64
|
+
"@tsconfig/strictest": "2.0.8",
|
|
58
65
|
"@types/fs-extra": "11.0.4",
|
|
59
|
-
"@types/node": "
|
|
66
|
+
"@types/node": "24.12.0",
|
|
60
67
|
"@types/semver": "7.7.1",
|
|
61
|
-
"@vitest/coverage-v8": "4.0.
|
|
62
|
-
"
|
|
68
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
69
|
+
"astro": "5.18.0",
|
|
70
|
+
"eslint": "10.0.3",
|
|
63
71
|
"eslint-config-prettier": "10.1.8",
|
|
64
|
-
"globals": "
|
|
72
|
+
"globals": "17.4.0",
|
|
65
73
|
"jiti": "2.6.1",
|
|
66
|
-
"prettier": "3.
|
|
74
|
+
"prettier": "3.8.1",
|
|
67
75
|
"typescript": "5.9.3",
|
|
68
|
-
"typescript-eslint": "8.
|
|
69
|
-
"vitest": "4.0.
|
|
76
|
+
"typescript-eslint": "8.56.1",
|
|
77
|
+
"vitest": "4.0.18"
|
|
70
78
|
},
|
|
71
79
|
"peerDependencies": {
|
|
72
|
-
"
|
|
80
|
+
"astro": ">=5.0.0",
|
|
81
|
+
"dugite": "3.2.0"
|
|
82
|
+
},
|
|
83
|
+
"peerDependenciesMeta": {
|
|
84
|
+
"astro": {
|
|
85
|
+
"optional": true
|
|
86
|
+
}
|
|
73
87
|
},
|
|
74
88
|
"scripts": {
|
|
75
89
|
"lint": "eslint",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
//#region rolldown:runtime
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __export = (all) => {
|
|
4
|
-
let target = {};
|
|
5
|
-
for (var name in all) __defProp(target, name, {
|
|
6
|
-
get: all[name],
|
|
7
|
-
enumerable: true
|
|
8
|
-
});
|
|
9
|
-
return target;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
//#endregion
|
|
13
|
-
export { __export as t };
|