hybridly 0.0.1-dev.1

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Anthony Fu <https://github.com/antfu>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ export { default } from './dist/auto-imports'
package/client.d.ts ADDED
@@ -0,0 +1 @@
1
+ declare module 'virtual:hybridly/router' {}
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ const vue = require('@hybridly/vue');
4
+
5
+
6
+
7
+ module.exports = vue.HybridlyImports;
@@ -0,0 +1 @@
1
+ export { HybridlyImports as default } from '@hybridly/vue';
@@ -0,0 +1 @@
1
+ export { HybridlyImports as default } from '@hybridly/vue';
package/dist/index.cjs ADDED
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const core = require('@hybridly/core');
6
+
7
+
8
+
9
+ for (const k in core) {
10
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = core[k];
11
+ }
@@ -0,0 +1 @@
1
+ export * from '@hybridly/core';
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export * from '@hybridly/core';
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ const vue = require('@hybridly/vue');
4
+
5
+
6
+
7
+ module.exports = vue.HybridlyResolver;
@@ -0,0 +1 @@
1
+ export { HybridlyResolver as default } from '@hybridly/vue';
@@ -0,0 +1 @@
1
+ export { HybridlyResolver as default } from '@hybridly/vue';
package/dist/vite.cjs ADDED
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const vite = require('@hybridly/vite');
6
+
7
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e["default"] : e; }
8
+
9
+ const vite__default = /*#__PURE__*/_interopDefaultLegacy(vite);
10
+
11
+
12
+
13
+ exports["default"] = vite__default;
14
+ for (const k in vite) {
15
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = vite[k];
16
+ }
package/dist/vite.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@hybridly/vite';
2
+ export { default } from '@hybridly/vite';
package/dist/vite.mjs ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@hybridly/vite';
2
+ export { default } from '@hybridly/vite';
package/dist/vue.cjs ADDED
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const vue = require('@hybridly/vue');
6
+
7
+
8
+
9
+ for (const k in vue) {
10
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = vue[k];
11
+ }
package/dist/vue.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from '@hybridly/vue';
package/dist/vue.mjs ADDED
@@ -0,0 +1 @@
1
+ export * from '@hybridly/vue';
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './dist/index'
2
+ export { default } from './dist/index'
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "hybridly",
3
+ "version": "0.0.1-dev.1",
4
+ "description": "A solution to develop server-driven, client-rendered applications",
5
+ "keywords": [
6
+ "hybridly",
7
+ "inertiajs"
8
+ ],
9
+ "homepage": "https://github.com/hybridly/hybridly#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/hybridly/hybridly/issues"
12
+ },
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/hybridly/hybridly.git"
17
+ },
18
+ "funding": "https://github.com/sponsors/innocenzi",
19
+ "author": "Enzo Innocenzi <enzo@innocenzi.dev>",
20
+ "sideEffects": false,
21
+ "files": [
22
+ "dist",
23
+ "*.d.ts"
24
+ ],
25
+ "exports": {
26
+ ".": {
27
+ "require": "./dist/index.cjs",
28
+ "import": "./dist/index.mjs",
29
+ "types": "./dist/index.d.ts"
30
+ },
31
+ "./vite": {
32
+ "require": "./dist/vite.cjs",
33
+ "import": "./dist/vite.mjs",
34
+ "types": "./dist/vite.d.ts"
35
+ },
36
+ "./vue": {
37
+ "require": "./dist/vue.cjs",
38
+ "import": "./dist/vue.mjs",
39
+ "types": "./dist/vue.d.ts"
40
+ },
41
+ "./auto-imports": {
42
+ "require": "./dist/auto-imports.cjs",
43
+ "import": "./dist/auto-imports.mjs",
44
+ "types": "./dist/auto-imports.d.ts"
45
+ },
46
+ "./resolver": {
47
+ "require": "./dist/resolver.cjs",
48
+ "import": "./dist/resolver.mjs",
49
+ "types": "./dist/resolver.d.ts"
50
+ }
51
+ },
52
+ "main": "dist/index.cjs",
53
+ "module": "dist/index.mjs",
54
+ "types": "index.d.ts",
55
+ "dependencies": {
56
+ "@hybridly/core": "0.0.1-dev.1",
57
+ "@hybridly/vite": "0.0.1-dev.1",
58
+ "@hybridly/vue": "0.0.1-dev.1"
59
+ },
60
+ "scripts": {
61
+ "build": "unbuild",
62
+ "stub": "unbuild --stub"
63
+ }
64
+ }
package/resolver.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { default } from './dist/resolver'
package/vite.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './dist/vite'
2
+ export { default } from './dist/vite'
package/vue.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './dist/vue'