bun-image-turbo 1.0.1-beta → 1.0.2-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +19 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun-image-turbo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2-beta",
|
|
4
4
|
"description": "High-performance image processing for Bun and Node.js - resize, convert, compress with WebP, AVIF, PNG, JPEG support",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -22,16 +22,17 @@
|
|
|
22
22
|
],
|
|
23
23
|
"napi": {
|
|
24
24
|
"name": "image-turbo",
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
"binaryName": "image-turbo",
|
|
26
|
+
"packageName": "bun-image-turbo",
|
|
27
|
+
"targets": [
|
|
28
|
+
"x86_64-apple-darwin",
|
|
29
|
+
"aarch64-apple-darwin",
|
|
30
|
+
"x86_64-pc-windows-msvc",
|
|
31
|
+
"aarch64-pc-windows-msvc",
|
|
32
|
+
"x86_64-unknown-linux-gnu",
|
|
33
|
+
"aarch64-unknown-linux-gnu",
|
|
34
|
+
"x86_64-unknown-linux-musl"
|
|
35
|
+
]
|
|
35
36
|
},
|
|
36
37
|
"scripts": {
|
|
37
38
|
"build": "napi build --platform --release",
|
|
@@ -39,7 +40,6 @@
|
|
|
39
40
|
"build:ts": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
40
41
|
"build:all": "bun run build && bun run build:ts",
|
|
41
42
|
"artifacts": "napi artifacts",
|
|
42
|
-
"prepublishOnly": "napi prepublish -t npm",
|
|
43
43
|
"version": "napi version",
|
|
44
44
|
"test": "bun test",
|
|
45
45
|
"bench": "bun run benchmarks/bench.ts",
|
|
@@ -89,13 +89,12 @@
|
|
|
89
89
|
"typescript": "^5.9.0"
|
|
90
90
|
},
|
|
91
91
|
"optionalDependencies": {
|
|
92
|
-
"bun-image-turbo-
|
|
93
|
-
"bun-image-turbo-darwin-x64": "1.0.
|
|
94
|
-
"bun-image-turbo-linux-
|
|
95
|
-
"bun-image-turbo-
|
|
96
|
-
"bun-image-turbo-linux-
|
|
97
|
-
"bun-image-turbo-
|
|
98
|
-
"bun-image-turbo-
|
|
99
|
-
"bun-image-turbo-win32-arm64-msvc": "1.0.1-beta"
|
|
92
|
+
"bun-image-turbo-darwin-arm64": "1.0.2-beta",
|
|
93
|
+
"bun-image-turbo-darwin-x64": "1.0.2-beta",
|
|
94
|
+
"bun-image-turbo-linux-arm64-gnu": "1.0.2-beta",
|
|
95
|
+
"bun-image-turbo-linux-x64-gnu": "1.0.2-beta",
|
|
96
|
+
"bun-image-turbo-linux-x64-musl": "1.0.2-beta",
|
|
97
|
+
"bun-image-turbo-win32-arm64-msvc": "1.0.2-beta",
|
|
98
|
+
"bun-image-turbo-win32-x64-msvc": "1.0.2-beta"
|
|
100
99
|
}
|
|
101
100
|
}
|