semantic-lady 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/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "semantic-lady",
3
+ "version": "0.1.0",
4
+ "description": "Schema unification SDK for generative media model APIs.",
5
+ "keywords": [
6
+ "babysea",
7
+ "semantic-lady",
8
+ "schema-unification",
9
+ "generative-media",
10
+ "model-schema",
11
+ "babychain",
12
+ "byok",
13
+ "typescript"
14
+ ],
15
+ "license": "Apache-2.0",
16
+ "author": {
17
+ "name": "BabySea",
18
+ "url": "https://babysea.ai"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/babysea-community/semantic-lady.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/babysea-community/semantic-lady/issues"
26
+ },
27
+ "homepage": "https://github.com/babysea-community/semantic-lady#readme",
28
+ "type": "module",
29
+ "main": "./dist/index.cjs",
30
+ "module": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
+ "exports": {
33
+ ".": {
34
+ "import": {
35
+ "types": "./dist/index.d.ts",
36
+ "default": "./dist/index.js"
37
+ },
38
+ "require": {
39
+ "types": "./dist/index.d.cts",
40
+ "default": "./dist/index.cjs"
41
+ }
42
+ }
43
+ },
44
+ "files": [
45
+ "dist",
46
+ "CHANGELOG.md",
47
+ "README.md",
48
+ "LICENSE"
49
+ ],
50
+ "packageManager": "pnpm@10.19.0",
51
+ "sideEffects": false,
52
+ "engines": {
53
+ "node": ">=22"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "scripts": {
59
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
60
+ "clean": "rm -rf .turbo node_modules dist coverage",
61
+ "test": "pnpm run build && node --test \"test/*.mjs\"",
62
+ "typecheck": "tsc --noEmit",
63
+ "check": "pnpm run typecheck && pnpm run test && pnpm run build"
64
+ },
65
+ "devDependencies": {
66
+ "@types/node": "^25.3.1",
67
+ "tsup": "^8.5.1",
68
+ "typescript": "^5.9.3"
69
+ }
70
+ }