mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
closes #5455 , this PR removes all Instagram support from both the client and Companion server. Removed: - Instagram from @uppy/remote-sources (src, package.json, keywords) - Instagram export from uppy bundle (bundle.ts, index.ts, package.json) - Companion Instagram OAuth provider (provider/index.js, grant.js) - Companion standalone helper Instagram env vars (helper.js, env_example) - All Companion Instagram tests (providers.test.js, provider-manager.test.js, fixtures/index.js, mockserver.js)
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "@uppy/remote-sources",
|
|
"description": "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Google Drive, Dropbox, Box, Unsplash, Url etc",
|
|
"version": "3.1.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"typecheck": "tsc --build",
|
|
"test": "vitest run --environment=jsdom --silent='passed-only'"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"google-drive",
|
|
"facebook",
|
|
"dropbox",
|
|
"onedrive",
|
|
"zoom",
|
|
"unsplash",
|
|
"box",
|
|
"url"
|
|
],
|
|
"homepage": "https://uppy.io",
|
|
"bugs": {
|
|
"url": "https://github.com/transloadit/uppy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"dist",
|
|
"CHANGELOG.md"
|
|
],
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/box": "workspace:^",
|
|
"@uppy/dashboard": "workspace:^",
|
|
"@uppy/dropbox": "workspace:^",
|
|
"@uppy/facebook": "workspace:^",
|
|
"@uppy/google-drive": "workspace:^",
|
|
"@uppy/onedrive": "workspace:^",
|
|
"@uppy/unsplash": "workspace:^",
|
|
"@uppy/url": "workspace:^",
|
|
"@uppy/zoom": "workspace:^"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"jsdom": "^26.1.0",
|
|
"resize-observer-polyfill": "^1.5.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|