-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.48 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@ogxjs/react",
"version": "0.1.2",
"description": "React adapter for OGX - Build OG images with JSX and Tailwind",
"author": "Carlos Eduardo",
"repository": {
"type": "git",
"url": "https://github.com/carlosedujs/ogx.git",
"directory": "packages/react"
},
"homepage": "https://ogx-three.vercel.app",
"bugs": "https://github.com/carlosedujs/ogx/issues",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./jsx": {
"types": "./dist/jsx.d.ts"
},
"./svg": {
"types": "./dist/render-svg.d.ts",
"import": "./dist/render-svg.js"
},
"./png": {
"types": "./dist/render-png.d.ts",
"import": "./dist/render-png.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@ogxjs/core": "workspace:*"
},
"devDependencies": {
"@testing-library/react": "^16.3.1",
"@types/node": "^20.19.27",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/ui": "^4.0.16",
"react": "^19.0.0",
"typescript": "5.9.2",
"vitest": "^4.0.16"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"scripts": {
"build": "tsc && cp src/jsx.d.ts dist/jsx.d.ts",
"dev": "tsc --watch",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"keywords": [
"react",
"jsx",
"og-image",
"opengraph",
"social-image"
],
"publishConfig": {
"access": "public"
}
}