-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "@mwarnerdotme/react-remixicon",
"description": "React component for the RemixIcon icon library",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"homepage": "https://gitlab.com/mwarnerdotme/react-remixicon",
"repository": {
"type": "git",
"url": "https://gitlab.com/mwarnerdotme/react-remixicon.git"
},
"contributors": [
"Michael Warner <gitlab.com/mwarnerdotme>"
],
"license": "MIT",
"scripts": {
"build": "yarn reset && yarn build:execute && yarn build:post",
"build:execute": "rollup -c rollup.config.mjs",
"build:post": "mv ./dist/src/* ./dist && rm -rf ./dist/src ./dist/scripts",
"icons:generate": "ts-node ./scripts/generateIconTypescriptFiles/index.ts",
"icons:reset": "rm -f ./src/icons/*.ts",
"dist": "NODE_ENV=production yarn icons:reset && yarn icons:generate && yarn build",
"lint": "eslint ./src ./scripts",
"reset": "rm -rf dist"
},
"peerDependencies": {
"react": ">=19.x",
"react-dom": ">=19.x"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.15.2",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@svgr/rollup": "^8.1.0",
"@types/node": "^22.10.3",
"@types/react": "^19.0.2",
"@types/rollup-plugin-peer-deps-external": "^2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remixicon": "^4.6.0",
"rollup": "^4.29.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"files": [
"dist"
],
"browserslist": [
"> 1%",
"last 2 versions",
"ie > 10"
],
"packageManager": "[email protected]"
}