mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 05:43:44 +08:00
aa89acbda6
Key changes include: - `@uppy/aws-s3-multipart` is now part of `@uppy/aws-s3`, and controlled with a boolean - Some minor changes/renames to Uppy APIs - Uppy has removed batch signing from their S3 multipart implementation. This commit implements a batching system outside of Uppy to avoid needing one-signing-request-per-part - Reduces concurrent part uploads to 6, because S3 uses HTTP/1.1 and browsers limit concurrent connections to 6-per-host. - Upstream drop-target implementation has changed slightly, so we now need `pointer-events: none` on the hover element
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "discourse-common",
|
|
"version": "1.0.0",
|
|
"description": "Shared code between discourse apps",
|
|
"author": "Discourse",
|
|
"license": "GPL-2.0-only",
|
|
"keywords": [
|
|
"ember-addon"
|
|
],
|
|
"scripts": {
|
|
"build": "ember build",
|
|
"lint:hbs": "ember-template-lint .",
|
|
"lint:js": "eslint .",
|
|
"start": "ember serve"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.26.0",
|
|
"@ember/string": "^4.0.0",
|
|
"discourse-i18n": "workspace:1.0.0",
|
|
"ember-auto-import": "^2.8.1",
|
|
"ember-cli-babel": "^8.2.0",
|
|
"ember-cli-htmlbars": "^6.3.0",
|
|
"ember-resolver": "^13.0.2",
|
|
"handlebars": "^4.7.8",
|
|
"truth-helpers": "workspace:1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ember/optional-features": "^2.2.0",
|
|
"@embroider/test-setup": "^4.0.0",
|
|
"@glimmer/component": "^1.1.2",
|
|
"@types/jquery": "^3.5.32",
|
|
"@types/qunit": "^2.19.11",
|
|
"@types/rsvp": "^4.0.9",
|
|
"broccoli-asset-rev": "^3.0.0",
|
|
"ember-cli": "~5.12.0",
|
|
"ember-cli-inject-live-reload": "^2.1.0",
|
|
"ember-cli-sri": "^2.1.1",
|
|
"ember-cli-terser": "^4.0.2",
|
|
"ember-disable-prototype-extensions": "^1.1.3",
|
|
"ember-load-initializers": "^3.0.1",
|
|
"ember-source": "~5.5.0",
|
|
"ember-source-channel-url": "^3.0.0",
|
|
"loader.js": "^4.7.0",
|
|
"webpack": "^5.95.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18",
|
|
"npm": "please-use-pnpm",
|
|
"yarn": "please-use-pnpm",
|
|
"pnpm": ">= 9"
|
|
},
|
|
"ember": {
|
|
"edition": "default"
|
|
}
|
|
}
|