lucide-text-icon 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "lucide-text-icon",
3
+ "version": "0.1.0",
4
+ "description": "Deterministic text-to-Lucide icon name mapping for lucide-react-native",
5
+ "license": "MIT",
6
+ "author": "nzmedet",
7
+ "type": "module",
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "src/generated/iconIndex.json"
21
+ ],
22
+ "scripts": {
23
+ "generate-index": "tsx scripts/generate-index.ts",
24
+ "prebuild": "npm run generate-index",
25
+ "build": "tsup src/index.ts --format esm,cjs --dts",
26
+ "pretest": "npm run generate-index",
27
+ "test": "vitest run"
28
+ },
29
+ "dependencies": {
30
+ "lucide-static": "^0.425.0"
31
+ },
32
+ "devDependencies": {
33
+ "tsx": "^4.7.0",
34
+ "tsup": "^8.1.0",
35
+ "typescript": "^5.4.5",
36
+ "vitest": "^1.6.0"
37
+ }
38
+ }