@estiato/icons 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/dist/index.d.ts +2 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/package.json +37 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { AlertCircle, AlertTriangle, ArrowLeft, ArrowRight, Bell, Calendar, ShoppingCart as Cart, Check, CheckCircle2 as CheckCircle, ChefHat, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, X as Close, Coffee, CreditCard, ExternalLink, LucideIcon as Icon, Info, LogIn, LogOut, Mail, MapPin, Menu, Minus, Phone, Plus, QrCode, Receipt, RefreshCw, Search, Settings, Loader2 as Spinner, Star, Trash2 as Trash, User, Users, Utensils, UtensilsCrossed, Wifi, WifiOff } from 'lucide-react';
|
|
2
|
+
export { ForkKnife as PhForkKnife, Storefront as PhStorefront } from '@phosphor-icons/react';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { AlertCircle, AlertTriangle, ArrowLeft, ArrowRight, Bell, Calendar, ShoppingCart as Cart, Check, CheckCircle2 as CheckCircle, ChefHat, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, X as Close, Coffee, CreditCard, ExternalLink, Info, LogIn, LogOut, Mail, MapPin, Menu, Minus, Phone, Plus, QrCode, Receipt, RefreshCw, Search, Settings, Loader2 as Spinner, Star, Trash2 as Trash, User, Users, Utensils, UtensilsCrossed, Wifi, WifiOff } from 'lucide-react';
|
|
2
|
+
export { ForkKnife as PhForkKnife, Storefront as PhStorefront } from '@phosphor-icons/react';
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
4
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@estiato/icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Curated icon set for Estiato — Lucide and Phosphor re-exports under a single import surface.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"react": "^18 || ^19"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"lucide-react": "^0.469.0",
|
|
22
|
+
"@phosphor-icons/react": "^2.1.7"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"tsup": "^8.3.5",
|
|
26
|
+
"typescript": "^5.7.2",
|
|
27
|
+
"@types/react": "^19.0.2"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"lint": "echo 'no lint'"
|
|
36
|
+
}
|
|
37
|
+
}
|