-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@stubby-cms/ui",
"private": false,
"version": "0.0.0-development",
"description": "",
"author": "Siddhartha Gudipati",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/stubby-cms/ui",
"repository": {
"type": "git",
"url": "git+https://github.com/stubby-cms/ui.git"
},
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.scss"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"dev": "vite dev",
"test": "vitest run",
"build": "tsc --p ./tsconfig.build.json && vite build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@shikijs/types": "1.26.1",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup-preserve-directives": "^1.1.3",
"sass": "^1.83.0",
"semantic-release": "^24.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-medium-image-zoom": "^5.2.12",
"shiki": "^1.26.1",
"@shikijs/transformers": "^1.26.1",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"markdown-to-jsx": "^7.7.3",
"next-mdx-remote": "^5.0.0",
"react-medium-image-zoom": "^5.2.12",
"react-router": "^7.1.1",
"remark-gfm": "^4.0.0",
"slugify": "^1.6.6",
"tailwind-variants": "^0.3.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.15.1"
}