-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.89 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
97
98
{
"name": "yang-components",
"version": "1.0.9",
"description": "Some react components with tailwindcss",
"license": "MIT",
"author": "MagnumGoYB <[email protected]>",
"homepage": "https://yang-components-site.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/MagnumGoYB/yang-components"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "pnpm clean && pnpm build:es",
"build:css": "tailwindcss -o ./dist/index.css -m",
"build:es": "rollup --config rollup.config.js",
"build:ts": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clean": "rimraf ./dist",
"lint": "eslint --ext .ts,.tsx --fix --quiet ./src",
"prepare": "husky install || exit 0",
"pretty": "pretty-quick && prettier-package-json --write",
"prepublishOnly": "pnpm lint && pnpm pretty && pnpm build"
},
"sideEffects": [
"dist/index.css"
],
"types": "dist/index.d.ts",
"dependencies": {
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"daisyui": "^2.50.0",
"postcss": "^8.4.21",
"react-icons": "^4.7.1",
"tailwindcss": "^3.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.11.17",
"@types/react": "^16.14.35",
"@types/react-dom": "^16.9.18",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"only-allow": "^1.1.1",
"prettier": "^2.8.1",
"prettier-package-json": "^2.7.0",
"prettier-plugin-sort-imports-by-identifier": "^3.3.4",
"pretty-quick": "^3.1.3",
"react": "~16.8.6",
"react-dom": "~16.8.6",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-tsc-alias": "^1.1.2",
"tsc-alias": "^1.8.2",
"tslib": "^2.5.0",
"typescript": "^4.9.3"
},
"keywords": [
"Component",
"React",
"TailwindCSS",
"UI"
],
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}