@odla-ai/brand 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,71 @@
1
+ {
2
+ "name": "@odla-ai/brand",
3
+ "version": "0.1.0",
4
+ "description": "Conversational brand-book builder for odla apps — document/image uploads onto odla-db files, agent-driven color exploration and palette proposals with human-gated approval, a zero-dep OKLCH/WCAG color engine, and a token compiler that turns an approved brand book into @odla-ai/ui design tokens.",
5
+ "license": "MIT",
6
+ "homepage": "https://odla.ai/docs/packages/brand",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cory/odla-ai.git",
10
+ "directory": "packages/brand"
11
+ },
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.cjs"
21
+ },
22
+ "./package.json": "./package.json"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "README.md"
27
+ ],
28
+ "sideEffects": false,
29
+ "engines": {
30
+ "node": ">=20"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public",
34
+ "provenance": false
35
+ },
36
+ "keywords": [
37
+ "odla",
38
+ "odla-ai",
39
+ "brand",
40
+ "brand-book",
41
+ "palette",
42
+ "color",
43
+ "design-tokens",
44
+ "agent"
45
+ ],
46
+ "scripts": {
47
+ "build": "tsup",
48
+ "clean": "rm -rf dist",
49
+ "typecheck": "tsc --noEmit",
50
+ "test": "vitest run",
51
+ "coverage": "vitest run --coverage",
52
+ "prepublishOnly": "npm run build && npm test"
53
+ },
54
+ "peerDependencies": {
55
+ "@odla-ai/ai": ">=0.5.0 <1.0.0"
56
+ },
57
+ "peerDependenciesMeta": {
58
+ "@odla-ai/ai": {
59
+ "optional": true
60
+ }
61
+ },
62
+ "devDependencies": {
63
+ "@odla-ai/ai": "*",
64
+ "@odla-ai/ui": "*",
65
+ "@types/node": "^26.1.0",
66
+ "@vitest/coverage-v8": "^4.1.9",
67
+ "tsup": "^8.3.0",
68
+ "typescript": "^6.0.3",
69
+ "vitest": "^4.1.9"
70
+ }
71
+ }