-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "color-theme-studio",
"version": "1.0.0",
"description": "Interactive color theme designer - pick any color, generate OKLCH shade palettes, preview live across UI components, and export theme files (CSS + JS + TypeScript) with runtime switching, localStorage persistence, and Tailwind CSS v4 support",
"author": "Lior Cohen",
"private": true,
"license": "MIT",
"homepage": "https://github.com/liorcodev/color-theme-studio#readme",
"repository": {
"type": "git",
"url": "https://github.com/liorcodev/color-theme-studio.git"
},
"bugs": {
"url": "https://github.com/liorcodev/color-theme-studio/issues"
},
"keywords": [
"theme",
"color",
"oklch",
"css-variables",
"theme-builder",
"shade-generator",
"tailwind"
],
"type": "module",
"scripts": {
"format": "prettier --write .",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/ui": "^4.7.1",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"marked": "^18.0.4",
"marked-highlight": "^2.2.4",
"nuxt": "^4.4.6",
"tailwindcss": "^4.3.0",
"vue": "^3.5.34",
"vue-router": "^5.0.7"
},
"devDependencies": {
"prettier": "^3.8.3"
}
}