-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 992 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
{
"name": "simple-icons-astro",
"version": "14.4.0",
"description": "Get your Simple icons right into your Astro project",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://simple-icons-astro.dzeio.com",
"bugs": "https://github.com/dzeiocom/simple-icons-astro/issues",
"repository": "https://github.com/dzeiocom/simple-icons-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",
"simple-icons",
"icons",
"astro-component"
],
"author": "Aviortheking",
"license": "MIT",
"devDependencies": {
"simple-icons": "14.4.0"
},
"peerDependencies": {
"astro": ">=2.7.1"
},
"files": [
"dist"
]
}