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
|
{
"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"
]
},
"./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 && 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": "2.2.0"
}
|