-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.85 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
{
"name": "@blessnetwork/bless-ui",
"version": "1.0.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "next dev",
"build": "tsc",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build:lib": "tsup",
"prepublishOnly": "yarn build:lib",
"tree": "zsh -i -c tree_me",
"prepare": "yarn build"
},
"dependencies": {
"@gem-mine/docsify-react-live": "^1.7.1",
"@highlightjs/cdn-assets": "^11.10.0",
"@radix-ui/react-slot": "^1.1.2",
"@stackblitz/sdk": "^1.11.0",
"@types/styled-components": "^5.1.34",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"highlight.js": "^11.10.0",
"lucide-react": "^0.454.0",
"marked": "^4.0.10",
"next": "14.2.25",
"radix-ui": "^1.1.3",
"react-highlight": "^0.15.0",
"react-icons": "^5.5.0",
"recharts": "^2.15.1",
"styled-components": "^6.1.15",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.16",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-highlight": "^0.12.8",
"autoprefixer": "^10.4.21",
"fluid-tailwind": "^1.0.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.8.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"yarn": "^1.22.22"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}