-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 1.83 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@astropub/icons",
"description": "Radix Icons for Astro",
"version": "0.2.0",
"type": "module",
"exports": {
".": "./dist/index.ts",
"./*": "./dist/*.astro"
},
"files": [
"dist"
],
"keywords": [
"15",
"15x15",
"astro",
"astro-component",
"astro component",
"astro icon",
"astro icons",
"collection",
"component",
"components",
"crisp",
"design",
"designed",
"designer",
"group",
"icon",
"icons",
"icon pack",
"import",
"importable",
"imports",
"modulz",
"pack",
"radix",
"radixui",
"radix icon",
"radix icons",
"radix ui",
"selection",
"vector",
"vectors",
"svg",
"svgs",
"ui",
"ux"
],
"license": "MIT",
"repository": "astro-community/icons",
"author": "Jonathan Neal <[email protected]>",
"authors": [
"Vlad Moroz <[email protected]>",
"Pedro Duarte <[email protected]>",
"Colm Tuite <[email protected]>"
],
"bugs": "https://github.com/astro-community/icons/issues",
"homepage": "https://github.com/astro-community/icons#readme",
"devDependencies": {
"@skypack/package-check": "0.2.2",
"adm-zip": "^0.5.9",
"astro": "^0.21.3",
"node-fetch": "^3.1.0",
"svgo": "^2.8.0"
},
"peerDependencies": {
"astro": "*"
},
"scripts": {
"website:build": "npm --prefix website install",
"website:start": "npm --prefix website start",
"build": "node build.js",
"release": "npm publish --access public",
"test": "package-check"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": [
".stackblitzrc",
"*.json"
],
"options": {
"useTabs": false
}
}
]
}
}