aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: de13064f82e0bf87ba8e62aa8a7ac04ba5ee4da0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "description": "The color palette for internet lovers",
  "devDependencies": {
    "typescript": "^5.4.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": [
        "./dist/index.d.ts",
        "./dist/colors.d.ts"
      ]
    },
    "./css": "./dist/uchu.css",
    "./pastel-css": "./dist/uchu-pastel.css"
    "./pastel-scss": "./dist/_pastel-palette.scss",
    "./scss": "./dist/_palette.scss"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://uchu.style",
  "keywords": [
    "color",
    "color-palette",
    "color-theme",
    "oklch",
    "pastel"
  ],
  "license": "UNLICENSE",
  "main": "./dist/index.js",
  "name": "@inc/uchu",
  "repository": {
    "type": "git",
    "url": "https://code.webb.page/nevercease/uchu.git"
  },
  "scripts": {
    "build": "bun run scripts/generate.ts && bun run build:js && bun run build:types",
    "build:js": "bun build src/index.ts --outdir dist --target node --format esm",
    "build:types": "tsc -p tsconfig.build.json",
    "dryRun": "bun pm pack --dry-run",
    "prepublishOnly": "bun run build",
    "typecheck": "tsc"
  },
  "type": "module",
  "types": [
    "./dist/index.d.ts",
    "./dist/colors.d.ts"
  ],
  "version": "3.0.0"
}