-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
{
"name": "bunny-satori",
"version": "0.0.2",
"private": false,
"type": "module",
"description": "Satori for Edge Scripting for bunny.net 🐰",
"keywords": [
"BunnyCDN",
"bunny.net",
"bunny",
"cdn",
"bunny-launcher",
"typescript",
"edge-scripting",
"edge",
"scripting",
"satori",
"wasm"
],
"homepage": "https://bunny-launcher.net/imaging/satori/",
"bugs": "https://github.com/jlarmstrongiv/bunny-satori/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jlarmstrongiv/bunny-satori.git"
},
"license": "AGPL-3.0-only",
"author": "John L. Armstrong IV",
"sideEffects": false,
"scripts": {
"build:dev": "MINIFY=false npx tsx src/bundler",
"build": "npx tsx src/bundler",
"patch": "npx patch-package yoga-wasm-web --exclude='nothing'",
"postinstall:local": "npx patch-package",
"prepublishOnly": "npm run build",
"pretest:deno": "npm run build:dev",
"pretest:node": "npm run build:dev",
"test:deno": "deno run --allow-all src/test/index.test.tsx",
"test:node": "npx tsx src/test/index.test.tsx"
},
"main": "dist/index.js",
"files": [
"dist"
],
"peerDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"satori": "^0.11.3",
"yoga-wasm-web": "^0.3.3"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"satori": {
"optional": true
},
"yoga-wasm-web": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/fs-extra": "11.0.4",
"@types/node": "22.5.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"esbuild": "0.24.0",
"fs-extra": "11.2.0",
"patch-package": "8.0.0",
"satori": "0.11.3",
"tsx": "4.19.1",
"typescript": "5.5.4",
"yoga-wasm-web": "0.3.3"
},
"packageManager": "npm@10.9.0",
"engines": {
"node": ">=20"
}
}