-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.59 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
{
"name": "media-icons",
"version": "1.1.4",
"description": "Open-source and beautifully hand-crafted collection of media icons.",
"type": "module",
"types": "dist/types/index.d.ts",
"jsdelivr": "./dist/cdn.js",
"sideEffects": [
"./src/element.ts",
"./dist/element.js"
],
"engines": {
"node": ">=16"
},
"files": [
"dist/",
"raw/",
"*.d.ts"
],
"scripts": {
"build": "rimraf dist && node .scripts/prebuild.js && rollup -c && pnpm types",
"types": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier src --write --loglevel warn"
},
"devDependencies": {
"esbuild": "^0.20.0",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"typescript": "^5.4.0"
},
"contributors": [
"Rahim Alwer <rahim.alwer@gmail.com>",
"Bilge Gozutok <billygozutok@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/vidstack/media-icons.git"
},
"bugs": {
"url": "https://github.com/vidstack/media-icons/issues"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./element": {
"types": "./dist/types/element.d.ts",
"browser": "./dist/element.js",
"default": "./dist/server/element.js"
},
"./dist/icons/*": {
"default": "./dist/icons/*"
},
"./raw/*": "./raw/*"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"open-source",
"icons",
"collection",
"set",
"audio",
"video",
"player",
"media",
"vidstack"
]
}