-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
51
52
53
{
"name": "unocss-preset-radix",
"version": "2.8.1",
"author": "endigma <[email protected]>",
"packageManager": "[email protected]",
"description": "A preset for UnoCSS providing access to the Radix UI color palette, along with some helpers for using it.",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:demo": "vite build --mode demo",
"test": "vitest",
"test:update": "vitest -u",
"release": "bumpp --commit --push --tag",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endigma/unocss-preset-radix.git"
},
"bugs": {
"url": "https://github.com/endigma/unocss-preset-radix/issues"
},
"keywords": [
"unocss",
"radix"
],
"license": "MIT",
"dependencies": {
"@radix-ui/colors": "3.0.0",
"@unocss/core": "^65.4.2",
"@unocss/rule-utils": "^65.4.2"
},
"peerDependencies": {},
"sideEffects": false,
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"alpinejs": "^3.14.8",
"bumpp": "^9.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"unocss": "^0.65.3",
"vite-plugin-dts": "^4.4.0",
"vitepress": "1.5.0",
"vitest": "^2.1.8"
}
}