-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.78 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
99
100
101
102
{
"name": "flowbite-react-icons",
"version": "1.1.0",
"description": "Official Flowbite Icons library for React",
"keywords": [
"flowbite",
"react",
"icons",
"svg"
],
"homepage": "https://github.com/themesberg/flowbite-react-icons#readme",
"bugs": "https://github.com/themesberg/flowbite-react-icons/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/themesberg/flowbite-react-icons.git"
},
"license": "MIT",
"author": {
"name": "Sutu Sebastian",
"email": "[email protected]",
"url": "https://github.com/SutuSebastian"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./outline": {
"types": "./dist/types/icons/outline/index.d.ts",
"import": "./dist/esm/icons/outline/index.mjs",
"require": "./dist/cjs/icons/outline/index.cjs"
},
"./solid": {
"types": "./dist/types/icons/solid/index.d.ts",
"import": "./dist/esm/icons/solid/index.mjs",
"require": "./dist/cjs/icons/solid/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist node_modules",
"dev": "rollup -c --watch",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "clean-package",
"prepublishOnly": "bun run build",
"release": "changeset publish",
"sync": "bun run scripts/sync.ts",
"typecheck": "tsc",
"version": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.6",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@rollup/plugin-alias": "5.1.0",
"@svgr/cli": "8.1.0",
"@types/bun": "1.1.5",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"clean-package": "2.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.34.3",
"ora": "8.0.1",
"prettier": "3.3.2",
"prettier-plugin-packagejson": "2.5.0",
"rimraf": "5.0.7",
"rollup": "4.18.0",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-use-client": "1.4.0",
"typescript": "5.5.2"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"clean-package": {
"remove": [
"devDependencies",
"clean-package"
],
"replace": {
"scripts": {
"postpublish": "clean-package restore"
}
}
}
}