liteforge 0.4.2 → 0.5.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.
@@ -0,0 +1,2 @@
1
+ export * from '@liteforge/admin';
2
+ //# sourceMappingURL=admin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../src/admin.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
package/dist/admin.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@liteforge/admin';
2
+ //# sourceMappingURL=admin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"admin.js","sourceRoot":"","sources":["../src/admin.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
package/dist/i18n.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@liteforge/i18n';
2
+ //# sourceMappingURL=i18n.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../src/i18n.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
package/dist/i18n.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@liteforge/i18n';
2
+ //# sourceMappingURL=i18n.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"i18n.js","sourceRoot":"","sources":["../src/i18n.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from '@liteforge/core';
2
- export * from '@liteforge/runtime';
1
+ export * from '../../core/src/index.js';
2
+ export * from '../../runtime/src/index.js';
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC"}
package/dist/index.js CHANGED
@@ -1,3 +1,6 @@
1
- export * from '@liteforge/core';
2
- export * from '@liteforge/runtime';
1
+ // Use relative paths so Vite resolves to the same file as the @liteforge/* aliases.
2
+ // @liteforge/core and @liteforge/runtime both resolve to these same files,
3
+ // ensuring a single module instance and a shared reactivity graph.
4
+ export * from '../../core/src/index.js';
5
+ export * from '../../runtime/src/index.js';
3
6
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,2EAA2E;AAC3E,mEAAmE;AACnE,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liteforge",
3
- "version": "0.4.2",
3
+ "version": "0.5.1",
4
4
  "description": "LiteForge — signals-based frontend framework. Single meta-package re-exporting all @liteforge/* packages.",
5
5
  "author": "SchildW3rk <contact@schildw3rk.dev>",
6
6
  "license": "MIT",
@@ -67,6 +67,14 @@
67
67
  "./store": {
68
68
  "types": "./dist/store.d.ts",
69
69
  "import": "./dist/store.js"
70
+ },
71
+ "./i18n": {
72
+ "types": "./dist/i18n.d.ts",
73
+ "import": "./dist/i18n.js"
74
+ },
75
+ "./admin": {
76
+ "types": "./dist/admin.d.ts",
77
+ "import": "./dist/admin.js"
70
78
  }
71
79
  },
72
80
  "files": [
@@ -82,18 +90,20 @@
82
90
  "access": "public"
83
91
  },
84
92
  "dependencies": {
85
- "@liteforge/core": "0.1.0",
86
- "@liteforge/runtime": "0.4.1",
87
- "@liteforge/router": "0.3.0",
88
- "@liteforge/client": "1.0.0",
89
93
  "@liteforge/store": "0.1.0",
94
+ "@liteforge/router": "0.3.0",
90
95
  "@liteforge/query": "1.0.0",
91
- "@liteforge/form": "0.1.0",
92
- "@liteforge/table": "0.1.1",
96
+ "@liteforge/client": "1.0.0",
97
+ "@liteforge/core": "0.1.0",
98
+ "@liteforge/runtime": "0.4.3",
99
+ "@liteforge/table": "0.2.0",
100
+ "@liteforge/modal": "1.1.0",
101
+ "@liteforge/calendar": "0.2.0",
93
102
  "@liteforge/devtools": "1.0.0",
94
- "@liteforge/modal": "1.0.0",
95
- "@liteforge/vite-plugin": "0.4.1",
96
- "@liteforge/calendar": "0.1.0"
103
+ "@liteforge/vite-plugin": "0.4.2",
104
+ "@liteforge/i18n": "0.2.0",
105
+ "@liteforge/admin": "0.2.0",
106
+ "@liteforge/form": "0.1.0"
97
107
  },
98
108
  "scripts": {
99
109
  "build": "tsc -p tsconfig.build.json",