-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "cyclone-ui",
"version": "0.1.6",
"private": false,
"description": "A Responsive React Typescript Tailwind Component library",
"homepage": "https://github.com/Arcktosh/cyclone-ui#readme",
"bugs": {
"url": "https://github.com/Arcktosh/cyclone-ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arcktosh/cyclone-ui.git"
},
"license": "ISC",
"author": {
"name": "Ben Henning",
"email": "[email protected]",
"url": "https://github.com/Arcktosh"
},
"main": "dist/csj/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"prepack": "npx rimraf ./dist/ ./build/ && prettier --single-quote --write src && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --outDir dist/esm",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build": "ladle build",
"start": "ladle serve"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"resolutions": {
"webpack": "^5"
},
"devDependencies": {
"@ladle/react": "^2.4.2",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"daisyui": "^2.15.3",
"postcss": "^8.4.14",
"qrcode.react": "^3.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.3",
"vcard-creator": "^0.4.2"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
}
}