@bendyline/gezel-catalog 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 +21 -0
- package/README.md +36 -0
- package/dist/index.d.ts +555 -0
- package/dist/index.js +2496 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bendyline/gezel-catalog",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Gezel catalog loader: sources, install pipeline, and authoring scripts over the external @bendyline/gilde content package.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"gezel",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"local-first",
|
|
11
|
+
"catalog",
|
|
12
|
+
"models",
|
|
13
|
+
"craftbooks"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/bendyline/gezel",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/bendyline/gezel/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/bendyline/gezel.git",
|
|
22
|
+
"directory": "packages/catalog"
|
|
23
|
+
},
|
|
24
|
+
"author": {
|
|
25
|
+
"name": "Bendyline",
|
|
26
|
+
"email": "support@bendyline.com"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"type": "module",
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=24.0.0"
|
|
35
|
+
},
|
|
36
|
+
"main": "./dist/index.js",
|
|
37
|
+
"module": "./dist/index.js",
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"exports": {
|
|
40
|
+
".": {
|
|
41
|
+
"types": "./dist/index.d.ts",
|
|
42
|
+
"import": "./dist/index.js"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist",
|
|
47
|
+
"!dist/**/*.map"
|
|
48
|
+
],
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@bendyline/gilde": "0.1.20",
|
|
51
|
+
"tar": "7.5.21",
|
|
52
|
+
"zod": "^4.4.3",
|
|
53
|
+
"@bendyline/gezel": "0.1.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"esbuild": "^0.28.1",
|
|
57
|
+
"tsup": "^8.5.1",
|
|
58
|
+
"tsx": "^4.23.1",
|
|
59
|
+
"typescript": "^6.0.3",
|
|
60
|
+
"vitest": "^4.1.10"
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"build": "tsup",
|
|
64
|
+
"dev": "tsup --watch",
|
|
65
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p scripts/tsconfig.json",
|
|
66
|
+
"test": "vitest run && node --test ../../scripts/update-gilde.test.mjs",
|
|
67
|
+
"clean": "rm -rf dist .turbo",
|
|
68
|
+
"import-mcp-registry": "tsx scripts/import-mcp-registry.ts",
|
|
69
|
+
"build-index": "node scripts/run-gilde-build-index.mjs",
|
|
70
|
+
"lint-manifests": "tsx src/chat-model-manifest-lint.ts",
|
|
71
|
+
"generate-craftbooks": "tsx scripts/generate-craftbooks.ts",
|
|
72
|
+
"pin-revisions": "tsx scripts/pin-revisions.ts",
|
|
73
|
+
"export-gilde-schemas": "tsx scripts/export-gilde-schemas.ts"
|
|
74
|
+
}
|
|
75
|
+
}
|