generated from designbycode/npm-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 KB
/
package.json
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
{
"name": "@designbycode/peacock",
"version": "1.0.3",
"description": "A powerful TypeScript color palette generator that creates harmonious color scales from a single base color. Perfect for design systems, UI frameworks, and custom theming solutions.",
"main": "/dist/index.umd.cjs",
"module": "./dist/index.js",
"type": "module",
"author": "Claude Myburgh <claude@designbycode.co.za>",
"license": "MIT",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc --declaration && vite build",
"clean": "rd /s /q dist .cache>nul 2>&1|echo.>nul",
"test": "vitest",
"pretty": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/node": "^20.14.8",
"prettier": "^3.3.2",
"terser": "^5.31.1",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"dependencies": {
"colord": "^2.9.3"
}
}