-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.89 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
{
"name": "tailwind-preset-antd",
"version": "0.1.6",
"description": "Use antd design token like using tailwindcss",
"keywords": [
"antd",
"tailwindcss"
],
"homepage": "https://json-q.github.io/tailwind-preset-antd/",
"license": "MIT",
"author": "json-q",
"repository": {
"type": "git",
"url": "git+https://github.com/json-q/tailwind-preset-antd.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
"./components": "./dist/components.js",
"./plugin": "./dist/plugin.js",
"./preset": "./dist/preset.js",
"./package.json": "./package.json"
},
"scripts": {
"play": "vite",
"build:play": "vite build",
"preview:play": "vite preview",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"ui": "vitest --ui",
"snapshot": "vitest -u",
"coverage": "vitest run --coverage",
"release": "bumpp",
"prepublishOnly": "pnpm run build",
"lint:package": "publint",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"hex-rgb": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "4.1.5",
"bumpp": "^11.1.0",
"jsdom": "^29.1.1",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"postcss": "^8.5.15",
"publint": "^0.3.21",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.1",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"peerDependencies": {
"antd": ">=5.12.0",
"react": ">=16.9.0",
"tailwindcss": "^3 || ^4"
}
}