-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
46
47
48
49
50
{
"name": "pandacss-preset-radix-colors",
"version": "0.2.0",
"author": "Milan de Kruijf <[email protected]>",
"description": "Brings Radix Colors to 🐼 PandaCSS",
"license": "MIT",
"keywords": [
"css",
"styling",
"preset",
"dark-mode",
"chakra-ui",
"radix-ui",
"pandacss",
"radix-colors"
],
"repository": {
"type": "git",
"url": "git+https://github.com/milandekruijf/pandacss-preset-radix-colors.git"
},
"bugs": {
"url": "https://github.com/milandekruijf/pandacss-preset-radix-colors/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"prepublish": "pnpm debug",
"debug": "pnpm build && panda debug -c debug/panda.config.ts"
},
"devDependencies": {
"@pandacss/dev": "^0.17.0",
"@pandacss/types": "^0.17.0",
"@radix-ui/colors": "3.0.0",
"@types/node": "^20.8.7",
"tsup": "^7.2.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.0.1",
"@radix-ui/colors": ">=0.1.0"
},
"packageManager": "[email protected]"
}