-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.02 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
{
"name": "lucide-mui",
"description": "Lucide icons compatible with MUI",
"version": "1.25.0",
"packageManager": "yarn@4.5.1",
"sideEffects": false,
"author": "Alexander Nicholson",
"homepage": "https://github.com/a16n-dev/lucide-mui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/a16n-dev/lucide-mui.git"
},
"license": "ISC",
"type": "module",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^7.0.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^24.0.15",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.0",
"@vitest/ui": "^3.0.5",
"cross-env": "^7.0.3",
"jsdom": "^26.0.0",
"lucide": "1.25.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.1",
"tsx": "^4.19.2",
"typescript": "^5.1.6",
"vite": "^7.1.7",
"vitest": "^3.0.7"
},
"scripts": {
"generate": "tsx scripts/generateIcons",
"build": "yarn generate && rimraf dist && yarn build:esm && yarn build:cjs && yarn build:tsc && node --loader ts-node/esm scripts/copyFiles.ts",
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts,.tsx' --out-dir 'dist/esm' --copy-files --no-copy-ignored",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts,.tsx' --out-dir 'dist/cjs'",
"build:tsc": "tsc --project tsconfig.prod.json",
"test": "vitest"
},
"peerDependencies": {
"@mui/material": "^7.0.1",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"keywords": [
"lucide",
"react",
"icons",
"material-ui",
"mui"
]
}