-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.1 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
{
"name": "goblin-ui",
"version": "2.0.1",
"private": false,
"description": "Goblin UI is a lightweight and simple React UI library designed for the React-Tailwind ecosystem. It is built with React, Vite, TypeScript, and Tailwind CSS to provide a seamless development experience. The library is open source, and anyone can use it freely to enhance their React applications.",
"keywords": [
"react",
"tailwind-css",
"component library"
],
"homepage": "https://qur786.github.io/goblin-ui/",
"bugs": {
"url": "https://github.com/qur786/goblin-ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qur786/goblin-ui"
},
"license": "MIT",
"author": "Qurban Ahmad <ahmad76qurban@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/goblin-ui.js",
"require": "./dist/goblin-ui.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/goblin-ui.umd.cjs",
"module": "./dist/goblin-ui.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=CHROMATIC_TOKEN",
"clean": "shx rm -rf node_modules docs dist storybook-static",
"doc": "typedoc",
"format": "yarn lint && yarn pretty",
"lint": "eslint lib/ stories/ --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0",
"pretty": "prettier stories/**/*.{ts,tsx,js,jsx,css} lib/**/*.{ts,tsx,js,jsx,css} --write && sort-package-json",
"start": "storybook dev -p 6006"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/addon-themes": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@types/node": "^20.11.26",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.18",
"chromatic": "^11.0.8",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"shx": "^0.3.4",
"sort-package-json": "^2.8.0",
"storybook": "^8.0.0",
"tailwindcss": "^3.4.1",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3"
},
"peerDependencies": {
"react": "^18.2.0"
},
"comments": {
"jackspeak": "Ref: https://github.com/storybookjs/storybook/issues/22431#issuecomment-1630086092"
}
}