aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authornetop://ウィビ <paul@webb.page>2026-04-25 12:29:59 -0700
committernetop://ウィビ <paul@webb.page>2026-04-25 12:29:59 -0700
commitdc5fff0c0afdf832b9b000e13ddc633f72749e01 (patch)
tree5730bd4ea089dadbc9c7f057a3988104fb662827 /package.json
parenta2118aa39a00e02cdf3f6c306e17fd04676ea518 (diff)
downloaduchu-dc5fff0c0afdf832b9b000e13ddc633f72749e01.tar.gz
uchu-dc5fff0c0afdf832b9b000e13ddc633f72749e01.zip
fantastic update
Diffstat (limited to 'package.json')
-rw-r--r--package.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..5f780b4
--- /dev/null
+++ b/package.json
@@ -0,0 +1,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": "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"
+}