-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "@officialunofficial/og",
"version": "0.3.1",
"description": "Primitives for rendering Open Graph card images on Fetch-API edge runtimes. Each product brings its own design.",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "git+https://github.com/officialunofficial/og.git"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./render": {
"types": "./dist/render.d.ts",
"default": "./dist/render.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE-MIT",
"LICENSE-APACHE"
],
"keywords": [
"open-graph",
"og-image",
"edge-runtime",
"social-card"
],
"packageManager": "bun@1.3.14",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "oxlint src examples",
"lint:fix": "oxlint --fix src examples",
"format": "oxfmt src examples",
"format:check": "oxfmt --check src examples",
"lint:pkg": "publint && attw --pack . --profile esm-only",
"check": "bun run lint && bun run format:check && bun run typecheck && bun run test && bun run build && bun run lint:pkg"
},
"peerDependencies": {
"workers-og": ">=0.0.27"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"oxfmt": "^0.58.0",
"oxlint": "^1.71.0",
"publint": "^0.3.12",
"typescript": "^7.0.2",
"vitest": "^4.1.8",
"workers-og": "^0.0.27"
}
}