chroma-ux 1.0.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,44 @@
1
+ {
2
+ "name": "chroma-ux",
3
+ "version": "1.0.0",
4
+ "description": "OKLCH 기반 UX/UI 토큰 생성기. Primary 고정, 라이트/다크 동시 생성, WCAG/CVD 검증. 런타임 의존성 0.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/cjs/index.cjs",
8
+ "module": "./dist/esm/index.js",
9
+ "bin": {
10
+ "chroma-ux": "./bin/cli.cjs"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "bin"
21
+ ],
22
+ "scripts": {
23
+ "build": "node build.js",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "keywords": [
27
+ "color",
28
+ "design-tokens",
29
+ "oklch",
30
+ "wcag",
31
+ "accessibility",
32
+ "theme",
33
+ "light-dark",
34
+ "ux",
35
+ "ui"
36
+ ],
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/designbasekorea/chroma-ux.git"
40
+ },
41
+ "devDependencies": {
42
+ "esbuild": "^0.24.0"
43
+ }
44
+ }