-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
{
"name": "@kuncheria_k/fancy-text",
"version": "0.4.2",
"license": "MIT",
"type": "module",
"readme": "README.md",
"homepage": "https://www.chromatic.com/library?appId=6430616c9dd94421cb7112ed",
"repository": {
"type": "git",
"url": "https://github.com/Kuncheria-Kuruvilla/fancy-text"
},
"scripts": {
"dev": "tsc && vite build --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"create-component": "yarn plop --plopfile ./plop/componentPlop.js"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/cli": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-vite": "^7.0.2",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.37.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"plop": "^3.1.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.2",
"storybook-builder-vite": "^0.1.23",
"styled-components": "^5.3.9",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^2.2.0"
},
"main": "./dist/fancy-text.umd.js",
"module": "./dist/fancy-text.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/fancy-text.es.js",
"require": "./dist/fancy-text.umd.js"
},
"./style.css": {
"require": "./dist/style.css",
"default": "./dist/style.css"
},
"./dist/index.d.ts": "./dist/index.d.ts"
},
"keywords": [
"react",
"fancy",
"text",
"component",
"ui",
"storybook"
]
}