-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 987 Bytes
/
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
{
"name": "lucide-astro",
"version": "0.477.0",
"description": "Get your Lucide icons right into your Astro project",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://lucide-astro.dzeio.com",
"bugs": "https://github.com/dzeiocom/lucide-astro/issues",
"repository": "https://github.com/dzeiocom/lucide-astro.git",
"scripts": {
"prepublish": "node src/build.js",
"build": "node src/build.js"
},
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*.astro",
"import": "./dist/*.astro",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"keywords": [
"astro",
"lucide",
"icons",
"astro-component"
],
"author": "Aviortheking",
"license": "MIT",
"devDependencies": {
"lucide-static": "0.477.0",
"semver": "^7.5.4"
},
"peerDependencies": {
"astro": ">=2.7.1"
},
"files": [
"dist"
]
}