@skiyee/oiyo 0.0.3 → 0.1.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/LICENSE +2 -2
- package/README.md +1 -1
- package/dist/api.cjs +21 -0
- package/dist/api.d.cts +8 -0
- package/dist/api.d.mts +8 -0
- package/dist/api.mjs +8 -0
- package/dist/{plugin-fIDukB_N.cjs → chunk-BS7uYtqT.cjs} +24 -4
- package/dist/chunk-CDV2JmUa.mjs +33 -0
- package/dist/component.cjs +21 -0
- package/dist/component.d.cts +8 -0
- package/dist/component.d.mts +8 -0
- package/dist/component.mjs +8 -0
- package/dist/config.cjs +15 -10
- package/dist/config.d.cts +5 -3
- package/dist/config.d.mts +5 -3
- package/dist/config.mjs +4 -4
- package/dist/index.cjs +50 -6
- package/dist/index.d.cts +13 -3
- package/dist/index.d.mts +13 -3
- package/dist/index.mjs +10 -4
- package/dist/plugin.cjs +4 -3
- package/dist/plugin.d.cts +2 -2
- package/dist/plugin.d.mts +2 -2
- package/dist/plugin.mjs +2 -2
- package/dist/runtime.cjs +3 -2
- package/dist/runtime.d.cts +2 -2
- package/dist/runtime.d.mts +2 -2
- package/dist/runtime.mjs +3 -2
- package/dist/types.cjs +2 -2
- package/dist/types.d.cts +2 -3
- package/dist/types.d.mts +2 -3
- package/dist/types.mjs +2 -2
- package/package.json +29 -17
package/LICENSE
CHANGED
|
@@ -4,8 +4,8 @@ oiyo 商业软件许可协议 / oiyo Commercial Software License Agreement
|
|
|
4
4
|
Last Updated: 2026-04-08
|
|
5
5
|
作者:skiyee
|
|
6
6
|
Author: skiyee
|
|
7
|
-
官网:https://oiyo.
|
|
8
|
-
Website: https://oiyo.
|
|
7
|
+
官网:https://oiyo.js.org
|
|
8
|
+
Website: https://oiyo.js.org
|
|
9
9
|
|
|
10
10
|
请在安装、复制、分发或使用 OIYO 前,请先阅读本协议。
|
|
11
11
|
PLEASE READ THIS AGREEMENT BEFORE INSTALLING, COPYING, DISTRIBUTING, OR USING OIYO.
|
package/README.md
CHANGED
package/dist/api.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
8
|
+
require("./chunk-BS7uYtqT.cjs");
|
|
9
|
+
let _oiyo_core = require("@oiyo/core");
|
|
10
|
+
Object.defineProperty(exports, "definePageMeta", {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function() {
|
|
13
|
+
return _oiyo_core.definePageMeta;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "defineRootContext", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function() {
|
|
19
|
+
return _oiyo_core.defineRootContext;
|
|
20
|
+
}
|
|
21
|
+
});
|
package/dist/api.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
import { PageMeta, definePageMeta, defineRootContext } from "@oiyo/core";
|
|
8
|
+
export { type PageMeta, definePageMeta, defineRootContext };
|
package/dist/api.d.mts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
import { PageMeta, definePageMeta, defineRootContext } from "@oiyo/core";
|
|
8
|
+
export { type PageMeta, definePageMeta, defineRootContext };
|
package/dist/api.mjs
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
import { definePageMeta, defineRootContext } from "@oiyo/core";
|
|
8
|
+
export { definePageMeta, defineRootContext };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
//#region \0rolldown/runtime.js
|
|
8
8
|
var __create = Object.create;
|
|
@@ -11,6 +11,15 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
11
11
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
12
12
|
var __getProtoOf = Object.getPrototypeOf;
|
|
13
13
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14
|
+
var __exportAll = (all, no_symbols) => {
|
|
15
|
+
let target = {};
|
|
16
|
+
for (var name in all) __defProp(target, name, {
|
|
17
|
+
get: all[name],
|
|
18
|
+
enumerable: true
|
|
19
|
+
});
|
|
20
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
21
|
+
return target;
|
|
22
|
+
};
|
|
14
23
|
var __copyProps = (to, from, except, desc) => {
|
|
15
24
|
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
16
25
|
key = keys[i];
|
|
@@ -21,13 +30,24 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
21
30
|
}
|
|
22
31
|
return to;
|
|
23
32
|
};
|
|
33
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
24
34
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
25
35
|
value: mod,
|
|
26
36
|
enumerable: true
|
|
27
37
|
}) : target, mod));
|
|
28
38
|
//#endregion
|
|
29
|
-
|
|
30
|
-
|
|
39
|
+
Object.defineProperty(exports, "__exportAll", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function() {
|
|
42
|
+
return __exportAll;
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
Object.defineProperty(exports, "__reExport", {
|
|
46
|
+
enumerable: true,
|
|
47
|
+
get: function() {
|
|
48
|
+
return __reExport;
|
|
49
|
+
}
|
|
50
|
+
});
|
|
31
51
|
Object.defineProperty(exports, "__toESM", {
|
|
32
52
|
enumerable: true,
|
|
33
53
|
get: function() {
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
//#region \0rolldown/runtime.js
|
|
8
|
+
var __defProp = Object.defineProperty;
|
|
9
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
11
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
|
+
var __exportAll = (all, no_symbols) => {
|
|
13
|
+
let target = {};
|
|
14
|
+
for (var name in all) __defProp(target, name, {
|
|
15
|
+
get: all[name],
|
|
16
|
+
enumerable: true
|
|
17
|
+
});
|
|
18
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
19
|
+
return target;
|
|
20
|
+
};
|
|
21
|
+
var __copyProps = (to, from, except, desc) => {
|
|
22
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
23
|
+
key = keys[i];
|
|
24
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
25
|
+
get: ((k) => from[k]).bind(null, key),
|
|
26
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
return to;
|
|
30
|
+
};
|
|
31
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
32
|
+
//#endregion
|
|
33
|
+
export { __reExport as n, __exportAll as t };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
|
+
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
|
+
* Commercial software. See LICENSE for terms.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
8
|
+
require("./chunk-BS7uYtqT.cjs");
|
|
9
|
+
let _oiyo_core = require("@oiyo/core");
|
|
10
|
+
Object.defineProperty(exports, "OiyoLayout", {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function() {
|
|
13
|
+
return _oiyo_core.OiyoLayout;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "OiyoPage", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function() {
|
|
19
|
+
return _oiyo_core.OiyoPage;
|
|
20
|
+
}
|
|
21
|
+
});
|
package/dist/config.cjs
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
require("./chunk-BS7uYtqT.cjs");
|
|
9
|
+
let _oiyo_config = require("@oiyo/config");
|
|
10
|
+
Object.defineProperty(exports, "defineOiyoConfig", {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function() {
|
|
13
|
+
return _oiyo_config.defineOiyoConfig;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "definePagesConfig", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function() {
|
|
19
|
+
return _oiyo_config.definePagesConfig;
|
|
20
|
+
}
|
|
16
21
|
});
|
package/dist/config.d.cts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
import { defineOiyoConfig, definePagesConfig } from "@oiyo/config";
|
|
8
|
+
export * from "@oiyo/config";
|
|
9
|
+
export { defineOiyoConfig, definePagesConfig };
|
package/dist/config.d.mts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
import { defineOiyoConfig, definePagesConfig } from "@oiyo/config";
|
|
8
|
+
export * from "@oiyo/config";
|
|
9
|
+
export { defineOiyoConfig, definePagesConfig };
|
package/dist/config.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
export {};
|
|
7
|
+
import { defineOiyoConfig, definePagesConfig } from "@oiyo/config";
|
|
8
|
+
export { defineOiyoConfig, definePagesConfig };
|
package/dist/index.cjs
CHANGED
|
@@ -1,19 +1,63 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
8
|
-
require("./
|
|
8
|
+
require("./chunk-BS7uYtqT.cjs");
|
|
9
|
+
require("./api.cjs");
|
|
10
|
+
require("./component.cjs");
|
|
11
|
+
require("./config.cjs");
|
|
12
|
+
require("./plugin.cjs");
|
|
13
|
+
require("./runtime.cjs");
|
|
14
|
+
let _oiyo_core = require("@oiyo/core");
|
|
9
15
|
let _oiyo_plugin = require("@oiyo/plugin");
|
|
16
|
+
let _oiyo_config = require("@oiyo/config");
|
|
17
|
+
//#endregion
|
|
18
|
+
Object.defineProperty(exports, "OiyoLayout", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function() {
|
|
21
|
+
return _oiyo_core.OiyoLayout;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "OiyoPage", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function() {
|
|
27
|
+
return _oiyo_core.OiyoPage;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
10
30
|
exports.OiyoPlugin = _oiyo_plugin.default;
|
|
11
|
-
|
|
12
|
-
|
|
31
|
+
Object.defineProperty(exports, "defineOiyoConfig", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function() {
|
|
34
|
+
return _oiyo_config.defineOiyoConfig;
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(exports, "definePageMeta", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function() {
|
|
40
|
+
return _oiyo_core.definePageMeta;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "definePagesConfig", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function() {
|
|
46
|
+
return _oiyo_config.definePagesConfig;
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
Object.defineProperty(exports, "defineRootContext", {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
get: function() {
|
|
52
|
+
return _oiyo_core.defineRootContext;
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
var _oiyo_framework = require("@oiyo/framework");
|
|
56
|
+
Object.keys(_oiyo_framework).forEach(function(k) {
|
|
13
57
|
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
14
58
|
enumerable: true,
|
|
15
59
|
get: function() {
|
|
16
|
-
return
|
|
60
|
+
return _oiyo_framework[k];
|
|
17
61
|
}
|
|
18
62
|
});
|
|
19
63
|
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
+
import { PageMeta, definePageMeta, defineRootContext } from "./api.cjs";
|
|
8
|
+
import { OiyoLayout, OiyoPage } from "./component.cjs";
|
|
9
|
+
import { defineOiyoConfig, definePagesConfig } from "./config.cjs";
|
|
7
10
|
import { OiyoPlugin } from "./plugin.cjs";
|
|
8
11
|
export * from "@oiyo/config";
|
|
9
|
-
export
|
|
12
|
+
export * from "@oiyo/framework";
|
|
13
|
+
|
|
14
|
+
//#region src/index.d.ts
|
|
15
|
+
declare namespace index_d_exports {
|
|
16
|
+
export { OiyoLayout, OiyoPage, OiyoPlugin, PageMeta, defineOiyoConfig, definePageMeta, definePagesConfig, defineRootContext };
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { OiyoLayout, OiyoPage, OiyoPlugin, PageMeta, defineOiyoConfig, definePageMeta, definePagesConfig, defineRootContext };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
+
import { PageMeta, definePageMeta, defineRootContext } from "./api.mjs";
|
|
8
|
+
import { OiyoLayout, OiyoPage } from "./component.mjs";
|
|
9
|
+
import { defineOiyoConfig, definePagesConfig } from "./config.mjs";
|
|
7
10
|
import { OiyoPlugin } from "./plugin.mjs";
|
|
8
11
|
export * from "@oiyo/config";
|
|
9
|
-
export
|
|
12
|
+
export * from "@oiyo/framework";
|
|
13
|
+
|
|
14
|
+
//#region src/index.d.ts
|
|
15
|
+
declare namespace index_d_exports {
|
|
16
|
+
export { OiyoLayout, OiyoPage, OiyoPlugin, PageMeta, defineOiyoConfig, definePageMeta, definePagesConfig, defineRootContext };
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { OiyoLayout, OiyoPage, OiyoPlugin, PageMeta, defineOiyoConfig, definePageMeta, definePagesConfig, defineRootContext };
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
+
import "./chunk-CDV2JmUa.mjs";
|
|
8
|
+
import { definePageMeta, defineRootContext } from "./api.mjs";
|
|
9
|
+
import { OiyoLayout, OiyoPage } from "./component.mjs";
|
|
10
|
+
import { defineOiyoConfig, definePagesConfig } from "./config.mjs";
|
|
7
11
|
import { OiyoPlugin } from "./plugin.mjs";
|
|
8
|
-
|
|
9
|
-
export
|
|
12
|
+
import "./runtime.mjs";
|
|
13
|
+
export * from "@oiyo/framework";
|
|
14
|
+
//#endregion
|
|
15
|
+
export { OiyoLayout, OiyoPage, OiyoPlugin, defineOiyoConfig, definePageMeta, definePagesConfig, defineRootContext };
|
package/dist/plugin.cjs
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperties(exports, {
|
|
8
8
|
__esModule: { value: true },
|
|
9
9
|
[Symbol.toStringTag]: { value: "Module" }
|
|
10
10
|
});
|
|
11
|
-
require("./
|
|
11
|
+
const require_chunk = require("./chunk-BS7uYtqT.cjs");
|
|
12
12
|
let _oiyo_plugin = require("@oiyo/plugin");
|
|
13
|
+
_oiyo_plugin = require_chunk.__toESM(_oiyo_plugin);
|
|
13
14
|
exports.OiyoPlugin = _oiyo_plugin.default;
|
|
14
15
|
exports.default = _oiyo_plugin.default;
|
package/dist/plugin.d.cts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
import OiyoPlugin from "@oiyo/plugin";
|
|
8
8
|
export { OiyoPlugin, OiyoPlugin as default };
|
package/dist/plugin.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
import OiyoPlugin from "@oiyo/plugin";
|
|
8
8
|
export { OiyoPlugin, OiyoPlugin as default };
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
import OiyoPlugin from "@oiyo/plugin";
|
|
8
8
|
export { OiyoPlugin, OiyoPlugin as default };
|
package/dist/runtime.cjs
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
8
|
+
require("./chunk-BS7uYtqT.cjs");
|
|
8
9
|
var _oiyo_framework = require("@oiyo/framework");
|
|
9
10
|
Object.keys(_oiyo_framework).forEach(function(k) {
|
|
10
11
|
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
package/dist/runtime.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
export * from "@oiyo/framework";
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
export * from "@oiyo/framework";
|
package/dist/runtime.mjs
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
+
import "./chunk-CDV2JmUa.mjs";
|
|
7
8
|
export * from "@oiyo/framework";
|
|
8
9
|
export {};
|
package/dist/types.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
package/dist/types.d.cts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
-
export * from "@oiyo/core/types";
|
|
8
7
|
export * from "@oiyo/framework/types";
|
package/dist/types.d.mts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @skiyee/oiyo v0.0
|
|
2
|
+
* @skiyee/oiyo v0.1.0
|
|
3
3
|
* Copyright (c) 2026 skiyee. All rights reserved.
|
|
4
4
|
* Commercial software. See LICENSE for terms.
|
|
5
|
-
* Official site: https://oiyo.
|
|
5
|
+
* Official site: https://oiyo.js.org
|
|
6
6
|
*/
|
|
7
|
-
export * from "@oiyo/core/types";
|
|
8
7
|
export * from "@oiyo/framework/types";
|
package/dist/types.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skiyee/oiyo",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"description": "以融合AI协作、提升开发体验、降低使用心智为目的 UniApp 增强型工程框架",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "skiyee",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"funding": "https://github.com/skiyee/sponsors",
|
|
13
|
-
"homepage": "https://oiyo.
|
|
13
|
+
"homepage": "https://oiyo.js.org",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
16
|
"url": "git+https://github.com/skiyee/oiyo.git"
|
|
@@ -32,13 +32,21 @@
|
|
|
32
32
|
"import": "./dist/index.mjs",
|
|
33
33
|
"require": "./dist/index.cjs"
|
|
34
34
|
},
|
|
35
|
-
"./
|
|
35
|
+
"./api": {
|
|
36
36
|
"types": {
|
|
37
|
-
"import": "./dist/
|
|
38
|
-
"require": "./dist/
|
|
37
|
+
"import": "./dist/api.d.mts",
|
|
38
|
+
"require": "./dist/api.d.cts"
|
|
39
39
|
},
|
|
40
|
-
"import": "./dist/
|
|
41
|
-
"require": "./dist/
|
|
40
|
+
"import": "./dist/api.mjs",
|
|
41
|
+
"require": "./dist/api.cjs"
|
|
42
|
+
},
|
|
43
|
+
"./component": {
|
|
44
|
+
"types": {
|
|
45
|
+
"import": "./dist/component.d.mts",
|
|
46
|
+
"require": "./dist/component.d.cts"
|
|
47
|
+
},
|
|
48
|
+
"import": "./dist/component.mjs",
|
|
49
|
+
"require": "./dist/component.cjs"
|
|
42
50
|
},
|
|
43
51
|
"./plugin": {
|
|
44
52
|
"types": {
|
|
@@ -56,13 +64,17 @@
|
|
|
56
64
|
"import": "./dist/config.mjs",
|
|
57
65
|
"require": "./dist/config.cjs"
|
|
58
66
|
},
|
|
59
|
-
"./
|
|
67
|
+
"./runtime": {
|
|
60
68
|
"types": {
|
|
61
|
-
"import": "./dist/
|
|
62
|
-
"require": "./dist/
|
|
69
|
+
"import": "./dist/runtime.d.mts",
|
|
70
|
+
"require": "./dist/runtime.d.cts"
|
|
63
71
|
},
|
|
64
|
-
"import": "./dist/
|
|
65
|
-
"require": "./dist/
|
|
72
|
+
"import": "./dist/runtime.mjs",
|
|
73
|
+
"require": "./dist/runtime.cjs"
|
|
74
|
+
},
|
|
75
|
+
"./types": {
|
|
76
|
+
"import": "./dist/types.d.mts",
|
|
77
|
+
"require": "./dist/types.d.cts"
|
|
66
78
|
}
|
|
67
79
|
},
|
|
68
80
|
"main": "./dist/index.cjs",
|
|
@@ -76,11 +88,11 @@
|
|
|
76
88
|
"vite": "5.2.8"
|
|
77
89
|
},
|
|
78
90
|
"dependencies": {
|
|
79
|
-
"@oiyo/cli": "0.0
|
|
80
|
-
"@oiyo/config": "0.0
|
|
81
|
-
"@oiyo/core": "0.0
|
|
82
|
-
"@oiyo/
|
|
83
|
-
"@oiyo/
|
|
91
|
+
"@oiyo/cli": "0.1.0",
|
|
92
|
+
"@oiyo/config": "0.1.0",
|
|
93
|
+
"@oiyo/core": "0.1.0",
|
|
94
|
+
"@oiyo/plugin": "0.1.0",
|
|
95
|
+
"@oiyo/framework": "0.1.0"
|
|
84
96
|
},
|
|
85
97
|
"scripts": {
|
|
86
98
|
"build": "tsdown",
|