@character-foundry/character-foundry 0.4.3-dev.1766103111 → 0.4.3-dev.1767230557

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@character-foundry/character-foundry",
3
- "version": "0.4.3-dev.1766103111",
3
+ "version": "0.4.3-dev.1767230557",
4
4
  "description": "Universal TypeScript library for AI character card formats",
5
5
  "type": "module",
6
6
  "exports": {
@@ -161,6 +161,12 @@
161
161
  "files": [
162
162
  "dist"
163
163
  ],
164
+ "scripts": {
165
+ "build": "tsup && node scripts/bundle-types.js",
166
+ "build:js": "tsup",
167
+ "build:types": "node scripts/bundle-types.js",
168
+ "clean": "rm -rf dist"
169
+ },
164
170
  "dependencies": {
165
171
  "fflate": "^0.8.2",
166
172
  "zod": "^3.22.4",
@@ -190,23 +196,23 @@
190
196
  }
191
197
  },
192
198
  "devDependencies": {
199
+ "@character-foundry/core": "workspace:^",
200
+ "@character-foundry/schemas": "workspace:^",
201
+ "@character-foundry/png": "workspace:^",
202
+ "@character-foundry/charx": "workspace:^",
203
+ "@character-foundry/voxta": "workspace:^",
204
+ "@character-foundry/lorebook": "workspace:^",
205
+ "@character-foundry/loader": "workspace:^",
206
+ "@character-foundry/exporter": "workspace:^",
207
+ "@character-foundry/normalizer": "workspace:^",
208
+ "@character-foundry/tokenizers": "workspace:^",
209
+ "@character-foundry/media": "workspace:^",
210
+ "@character-foundry/image-utils": "workspace:^",
211
+ "@character-foundry/federation": "workspace:^",
212
+ "@character-foundry/app-framework": "workspace:^",
193
213
  "dts-bundle-generator": "^9.5.1",
194
214
  "tsup": "^8.5.1",
195
- "typescript": "^5.3.0",
196
- "@character-foundry/core": "^0.1.3",
197
- "@character-foundry/png": "^0.0.6",
198
- "@character-foundry/schemas": "^0.2.2",
199
- "@character-foundry/charx": "^0.0.7",
200
- "@character-foundry/lorebook": "^0.0.3",
201
- "@character-foundry/voxta": "^0.1.13",
202
- "@character-foundry/loader": "^0.1.10",
203
- "@character-foundry/exporter": "^0.1.4",
204
- "@character-foundry/normalizer": "^0.1.5",
205
- "@character-foundry/tokenizers": "^0.1.3",
206
- "@character-foundry/media": "^0.1.3",
207
- "@character-foundry/image-utils": "^0.1.0",
208
- "@character-foundry/federation": "^0.5.2",
209
- "@character-foundry/app-framework": "^0.2.2"
215
+ "typescript": "^5.3.0"
210
216
  },
211
217
  "publishConfig": {
212
218
  "registry": "https://registry.npmjs.org",
@@ -226,11 +232,5 @@
226
232
  "ai",
227
233
  "roleplay"
228
234
  ],
229
- "license": "MIT",
230
- "scripts": {
231
- "build": "tsup && node scripts/bundle-types.js",
232
- "build:js": "tsup",
233
- "build:types": "node scripts/bundle-types.js",
234
- "clean": "rm -rf dist"
235
- }
236
- }
235
+ "license": "MIT"
236
+ }