-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
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
{
"name": "@embedly/nextjs",
"version": "1.0.0",
"description": "A simple React component library for embedding content via Embedly's OEmbed API in Next.js applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embedly/embedly-nextjs.git"
},
"bugs": {
"url": "https://github.com/embedly/embedly-nextjs/issues",
"email": "support@embed.ly"
},
"homepage": "https://github.com/embedly/embedly-nextjs#readme",
"keywords": [
"embedly",
"oembed",
"nextjs",
"next.js",
"react",
"embed",
"iframe",
"youtube",
"vimeo",
"twitter",
"video-embed",
"rich-embed",
"media-embed",
"content-embedding"
],
"author": "Embedly <support@embed.ly> (https://embed.ly)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"next": "^13.0.0 || ^14.0.0 || ^15.0.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"typescript": "^5.3.0"
}
}