-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add infrastructure to re-publish release tarballs as npm packages
- Loading branch information
Showing
15 changed files
with
535 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ libvips* | |
*.log | ||
deps/ | ||
target/ | ||
npm/*/* | ||
!npm/*/package.json | ||
npm/img-sharp-libvips-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "@img/sharp-libvips-darwin-arm64", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on macOS 64-bit ARM", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/darwin-arm64" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"macos": ">=11" | ||
}, | ||
"os": [ | ||
"darwin" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "@img/sharp-libvips-darwin-x64", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on macOS x64", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/darwin-x64" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"macos": ">=10.13" | ||
}, | ||
"os": [ | ||
"darwin" | ||
], | ||
"cpu": [ | ||
"x64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "@img/sharp-libvips-dev", | ||
"version": "0.0.2", | ||
"description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/dev" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"include", | ||
"cplusplus", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./include": "./include/index.js", | ||
"./cplusplus": "./cplusplus/index.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "@img/sharp-libvips-linux-arm", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on Linux (glibc) 32-bit ARM", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/linux-arm" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"type": "commonjs", | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"glibc": ">=2.28" | ||
}, | ||
"os": [ | ||
"linux" | ||
], | ||
"libc": [ | ||
"glibc" | ||
], | ||
"cpu": [ | ||
"arm" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "@img/sharp-libvips-linux-arm64", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on Linux (glibc) 64-bit ARM", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/linux-arm64" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"glibc": ">=2.26" | ||
}, | ||
"os": [ | ||
"linux" | ||
], | ||
"libc": [ | ||
"glibc" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "@img/sharp-libvips-linux-s390x", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on Linux (glibc) s390x", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/linux-s390x" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"type": "commonjs", | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"glibc": ">=2.28" | ||
}, | ||
"os": [ | ||
"linux" | ||
], | ||
"libc": [ | ||
"glibc" | ||
], | ||
"cpu": [ | ||
"s390x" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "@img/sharp-libvips-linux-x64", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on Linux (glibc) x64", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/linux-x64" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"glibc": ">=2.26" | ||
}, | ||
"os": [ | ||
"linux" | ||
], | ||
"libc": [ | ||
"glibc" | ||
], | ||
"cpu": [ | ||
"x64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "@img/sharp-libvips-linuxmusl-arm64", | ||
"version": "0.0.2", | ||
"description": "Prebuilt libvips and dependencies for use with sharp on Linux (musl) 64-bit ARM", | ||
"author": "Lovell Fuller <[email protected]>", | ||
"homepage": "https://sharp.pixelplumbing.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lovell/sharp-libvips.git", | ||
"directory": "npm/linuxmusl-arm64" | ||
}, | ||
"license": "LGPL-3.0-or-later", | ||
"funding": { | ||
"url": "https://opencollective.com/libvips" | ||
}, | ||
"preferUnplugged": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"lib", | ||
"versions.json" | ||
], | ||
"type": "commonjs", | ||
"exports": { | ||
"./lib": "./lib/index.js", | ||
"./package": "./package.json", | ||
"./versions": "./versions.json" | ||
}, | ||
"engines": { | ||
"npm": ">=9.6.5", | ||
"yarn": ">=3.2.0", | ||
"pnpm": ">=7.1.0", | ||
"musl": ">=1.2.2" | ||
}, | ||
"os": [ | ||
"linux" | ||
], | ||
"libc": [ | ||
"musl" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
] | ||
} |
Oops, something went wrong.