aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 82f355690f760dfa0f4c3cab153f079b86831f89 (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
{
  "description": "The color palette for internet lovers",
  "devDependencies": {
    "typescript": "^5.4.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./scss": "./dist/_palette.scss",
    "./css": "./dist/uchu.css"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://uchu.style",
  "keywords": [
    "color",
    "color-palette",
    "color-theme",
    "oklch"
  ],
  "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",
    "build:js": "bun build src/index.ts --outdir dist --target node --format esm --dts",
    "dryRun": "bun pm pack --dry-run",
    "prepublishOnly": "bun run build",
    "typecheck": "tsc"
  },
  "type": "module",
  "types": "./dist/index.d.ts",
  "version": "2.0.0"
}