@charstudios/pallet 0.1.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/LICENSE +21 -0
- package/README.md +479 -0
- package/dist/chunk-4GSIZANE.js +231 -0
- package/dist/chunk-4GSIZANE.js.map +1 -0
- package/dist/index-DcC8QTrl.d.ts +172 -0
- package/dist/index.d.ts +400 -0
- package/dist/index.js +651 -0
- package/dist/index.js.map +1 -0
- package/dist/presets/index.d.ts +1 -0
- package/dist/presets/index.js +3 -0
- package/dist/presets/index.js.map +1 -0
- package/dist/server.d.ts +85 -0
- package/dist/server.js +166 -0
- package/dist/server.js.map +1 -0
- package/dist/styles/base.css +39 -0
- package/dist/styles/index.css +15 -0
- package/dist/styles/variant-flat.css +32 -0
- package/dist/styles/variant-launch.css +75 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@charstudios/pallet",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Runtime, hook-driven theming layer for shadcn/ui apps. Full control over colors, fonts, roundness, elevation, spacing and motion, with swappable visual variants.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Char Studios",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Char-Studios/Pallet.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Char-Studios/Pallet/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/Char-Studios/Pallet#readme",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"shadcn",
|
|
18
|
+
"theme",
|
|
19
|
+
"theming",
|
|
20
|
+
"design-system",
|
|
21
|
+
"tailwind",
|
|
22
|
+
"react",
|
|
23
|
+
"nextjs",
|
|
24
|
+
"css-variables",
|
|
25
|
+
"tokens"
|
|
26
|
+
],
|
|
27
|
+
"sideEffects": [
|
|
28
|
+
"**/*.css"
|
|
29
|
+
],
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"import": "./dist/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./server": {
|
|
39
|
+
"types": "./dist/server.d.ts",
|
|
40
|
+
"import": "./dist/server.js"
|
|
41
|
+
},
|
|
42
|
+
"./presets": {
|
|
43
|
+
"types": "./dist/presets/index.d.ts",
|
|
44
|
+
"import": "./dist/presets/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./styles": "./dist/styles/index.css",
|
|
47
|
+
"./styles/flat": "./dist/styles/variant-flat.css",
|
|
48
|
+
"./styles/launch": "./dist/styles/variant-launch.css",
|
|
49
|
+
"./styles/base": "./dist/styles/base.css"
|
|
50
|
+
},
|
|
51
|
+
"main": "./dist/index.js",
|
|
52
|
+
"module": "./dist/index.js",
|
|
53
|
+
"types": "./dist/index.d.ts",
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsup",
|
|
56
|
+
"dev": "tsup --watch",
|
|
57
|
+
"typecheck": "tsc --noEmit",
|
|
58
|
+
"prepublishOnly": "npm run build"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": ">=18",
|
|
62
|
+
"react-dom": ">=18"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/react": "^19",
|
|
66
|
+
"@types/react-dom": "^19",
|
|
67
|
+
"react": "^19",
|
|
68
|
+
"react-dom": "^19",
|
|
69
|
+
"tsup": "^8.5.0",
|
|
70
|
+
"typescript": "^5.6.0"
|
|
71
|
+
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=18"
|
|
77
|
+
}
|
|
78
|
+
}
|