-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.32 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.32 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
{
"name": "razi-ui",
"author": "pedrorault",
"version": "0.2",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"exports": {
".": {
"require": "./dist/razi-ui.cjs",
"default": "./dist/razi-ui.modern.js",
"types": "./dist/index.d.ts"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"main": "dist/razi-ui.cjs",
"module": "dist/razi-ui.js",
"unpkg": "./dist/razi-ui.umd.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "husky install",
"build": "microbundle --jsx React.createElement",
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build",
"sb-deploy": "storybook build && git add storybook-static && git commit -n -m \"Building storybook for static release\""
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@size-limit/preset-small-lib": "^8.2.4",
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^7.0.20",
"@storybook/addon-styling": "^1.1.0",
"@storybook/addons": "^7.0.20",
"@storybook/cli": "^7.0.20",
"@storybook/react": "^7.0.20",
"@storybook/react-webpack5": "^7.0.20",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"clsx": "^1.2.1",
"cssnano": "^6.0.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"microbundle": "^0.15.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"size-limit": "^8.2.4",
"storybook": "7.1.0-alpha.29",
"storybook-css-modules": "^1.0.8",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
}
}