-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.75 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.75 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@rlabs-inc/theme-generator",
"version": "0.1.2",
"description": "Transform 3D OKLCH color clouds into complete themes for 10 targets via constraint-based extraction",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"sacred-colors": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "bun test",
"cli": "bun run src/cli.ts",
"prepublishOnly": "bun run build"
},
"peerDependencies": {
"@rlabs-inc/color-generator": ">=0.1.0",
"culori": "^4.0.2"
},
"devDependencies": {
"@rlabs-inc/color-generator": ">=0.1.0",
"@types/culori": "^4.0.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
},
"keywords": [
"theme",
"theme-generator",
"color-theme",
"sacred-geometry",
"oklch",
"vscode-theme",
"zed-theme",
"ghostty-theme",
"warp-theme",
"wezterm-theme",
"helix-theme",
"vim-colorscheme",
"neovim-colorscheme",
"shadcn-ui",
"tailwind-colors",
"terminal-theme",
"syntax-highlighting",
"color-scheme",
"dark-theme",
"light-theme",
"wcag",
"accessibility",
"ansi-colors"
],
"author": "RLabs Inc",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/RLabs-Inc/theme-generator"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"picocolors": "^1.1.1"
}
}