quick-palette 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "quick-palette",
3
+ "version": "0.2.0",
4
+ "description": "Explore and generate reproducible OKLCH-based color palettes from the command line.",
5
+ "license": "MIT",
6
+ "author": "Ryo Sugimoto",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/RyoSugimoto/quick-palette.git"
10
+ },
11
+ "homepage": "https://github.com/RyoSugimoto/quick-palette#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/RyoSugimoto/quick-palette/issues"
14
+ },
15
+ "keywords": [
16
+ "color",
17
+ "palette",
18
+ "oklch",
19
+ "cli"
20
+ ],
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "engines": {
27
+ "node": ">=22"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "packageManager": "pnpm@11.6.0",
33
+ "type": "module",
34
+ "bin": {
35
+ "quick-palette": "./dist/cli/index.js"
36
+ },
37
+ "scripts": {
38
+ "build": "tsc -p tsconfig.json",
39
+ "prepack": "pnpm build",
40
+ "prepublishOnly": "pnpm test --exclude test/cli/package.test.ts && pnpm typecheck",
41
+ "start": "tsx src/cli/index.ts",
42
+ "test": "vitest run",
43
+ "test:core": "vitest run test/core",
44
+ "typecheck": "tsc -p tsconfig.json --noEmit"
45
+ },
46
+ "dependencies": {
47
+ "colorjs.io": "^0.6.1"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^25.9.3",
51
+ "tsx": "^4.22.4",
52
+ "typescript": "^6.0.3",
53
+ "vitest": "^4.1.9"
54
+ }
55
+ }