-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "yton-ui",
"private": false,
"version": "0.2.0",
"author": "ytton",
"description": "a react ui library",
"license": "MIT",
"files": [
"dist",
"es",
"package.json",
"readme.md"
],
"keywords": [
"react",
"ui",
"component"
],
"repository": {
"type": "git",
"url": "https://www.github.com/ytton/yton-ui"
},
"homepage": "https://ytton.github.io/yton-ui/",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "es/index.d.ts",
"scripts": {
"dev": "vite --config vite.config.doc.ts",
"test": "vitest",
"test:check": "vitest run",
"build": "tsc --project tsconfig.lib.json && vite build --config vite.config.ts",
"build:docs": "tsc --project tsconfig.doc.json && vite build --config vite.config.doc.ts",
"deploy:docs": "npm run build:docs && gh-pages -d docs/dist",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm run test:check && npm run build && npm run deploy:docs"
},
"dependencies": {
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"color": "^4.2.3",
"framer-motion": "^11.11.1",
"nanoid": "^5.0.7",
"radash": "^12.1.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@iconify/react": "^5.0.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"highlight.js": "^11.10.0",
"jsdom": "^25.0.1",
"less": "^4.2.0",
"postcss": "^8.4.47",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-live": "^4.1.7",
"react-router-dom": "^6.26.2",
"rehype-highlight": "^7.0.0",
"rehype-mdx-code-props": "^3.0.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"tailwindcss": "^3.4.12",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"use-clipboard-copy": "^0.2.0",
"vite": "^5.4.1",
"vite-plugin-raw": "^1.0.3",
"vitest": "^2.1.2"
}
}