-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.51 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
{
"name": "@te6/ui",
"version": "0.1.5",
"scripts": {
"dev": "pnpm start:next",
"start": "pnpm start:next",
"start:next": "next dev",
"start:ladle": "ladle dev",
"build": "pnpm format && pnpm lint && pnpm build:rollup && pnpm build:ladle && pnpm build:next",
"build:next": "next build",
"build:ladle": "ladle build",
"build:rollup": "rm -rf dist && tsc --project src && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript && rm -rf dist/types",
"serve:next": "next start",
"serve:ladle": "ladle preview",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,json}": [
"pnpm format",
"pnpm lint"
]
},
"dependencies": {
"@ladle/react": "^4.0.2",
"framer-motion": "^10.18.0",
"lucide-react": "^0.314.0",
"next": "14.1.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18",
"react-hook-form": "^7.49.3"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"tailwind-mq": "^0.3.0",
"tailwindcss": "^3.3.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.13"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "A collection of UI components for Next.js, built with Tailwind CSS.",
"keywords": [
"nextjs",
"tailwindcss",
"react",
"ui",
"components"
],
"homepage": "https://github.com/te6-in/te6-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/te6-in/te6-ui.git"
},
"bugs": {
"url": "https://github.com/te6-in/te6-ui/issues"
},
"license": "MPL-2.0",
"author": {
"name": "Chanhwi Joo",
"url": "https://blog.te6.in/"
},
"publishConfig": {
"access": "public"
}
}