@loom-framework/core 0.1.0-alpha.48 → 0.1.0-alpha.49

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.
@@ -167,8 +167,8 @@ async function createPackageJson(targetDir, options) {
167
167
  generate: 'loom generate capabilities',
168
168
  },
169
169
  dependencies: {
170
- '@loom-framework/core': '^0.1.0-alpha.47',
171
- '@loom-framework/frontend-antd': '^0.1.0-alpha.47',
170
+ '@loom-framework/core': '^0.1.0-alpha.49',
171
+ '@loom-framework/frontend-antd': '^0.1.0-alpha.49',
172
172
  'fastify': '^5.2.0',
173
173
  '@ant-design/x': '^2.5.0',
174
174
  '@ant-design/x-sdk': '^2.5.0',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loom-framework/core",
3
- "version": "0.1.0-alpha.48",
3
+ "version": "0.1.0-alpha.49",
4
4
  "description": "Loom framework - DataAdapter, Capability Generator, config system, backend server, CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,6 +20,12 @@
20
20
  "dist",
21
21
  "templates"
22
22
  ],
23
+ "scripts": {
24
+ "build": "tsc",
25
+ "dev": "tsc --watch",
26
+ "clean": "rm -rf dist",
27
+ "lint": "tsc --noEmit"
28
+ },
23
29
  "dependencies": {
24
30
  "jiti": "^2.6.1",
25
31
  "zod": "^3.23.0",
@@ -37,11 +43,5 @@
37
43
  "devDependencies": {
38
44
  "@types/better-sqlite3": "^7.6.13",
39
45
  "typescript": "^5.6.0"
40
- },
41
- "scripts": {
42
- "build": "tsc",
43
- "dev": "tsc --watch",
44
- "clean": "rm -rf dist",
45
- "lint": "tsc --noEmit"
46
46
  }
47
- }
47
+ }