2018-01-06 23:51:25 +00:00
|
|
|
{
|
2018-03-12 03:37:24 +00:00
|
|
|
"name": "pinafore",
|
|
|
|
"description": "Alternative web client for Mastodon",
|
2022-11-20 18:00:38 +00:00
|
|
|
"version": "2.3.0",
|
2021-07-05 04:19:04 +01:00
|
|
|
"type": "module",
|
|
|
|
"engines": {
|
2022-11-18 01:09:37 +00:00
|
|
|
"node": "^12.20.0 || ^14.13.1 || ^16.0.0 || ^18.0.0"
|
2021-07-05 04:19:04 +01:00
|
|
|
},
|
2018-01-06 23:51:25 +00:00
|
|
|
"scripts": {
|
2018-12-11 15:31:48 +00:00
|
|
|
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
|
|
|
|
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
|
2021-07-05 04:19:04 +01:00
|
|
|
"dev": "run-s before-build serve-dev",
|
2018-12-18 06:42:39 +00:00
|
|
|
"serve-dev": "run-p --race build-template-html-watch sapper-dev",
|
2021-07-05 04:19:04 +01:00
|
|
|
"sapper-dev": "cross-env NODE_ENV=development PORT=4002 WEBPACK_CONFIG_FILE=webpack/webpack.config.cjs SERVER_FILE_EXT=cjs node ./node_modules/sapper/sapper dev",
|
|
|
|
"before-build": "run-p build-template-html build-assets build-webpack-config",
|
2019-01-28 01:44:30 +00:00
|
|
|
"build": "cross-env NODE_ENV=production run-s build-steps",
|
2020-08-26 00:45:53 +01:00
|
|
|
"build-steps": "run-s before-build sapper-export build-vercel-json",
|
2021-07-05 04:19:04 +01:00
|
|
|
"sapper-build": "cross-env WEBPACK_CONFIG_FILE=webpack/webpack.config.cjs SERVER_FILE_EXT=cjs node ./node_modules/sapper/sapper build",
|
2019-02-13 07:12:50 +00:00
|
|
|
"start": "node server.js",
|
2018-02-19 01:28:08 +00:00
|
|
|
"build-and-start": "run-s build start",
|
2021-07-05 04:19:04 +01:00
|
|
|
"build-template-html": "node ./bin/build-template-html.js",
|
|
|
|
"build-template-html-watch": "node ./bin/build-template-html.js --watch",
|
|
|
|
"build-assets": "node ./bin/build-assets.js",
|
|
|
|
"build-webpack-config": "rollup -c ./webpack/rollup.config.js",
|
|
|
|
"clone-mastodon": "node ./bin/clone-mastodon.js",
|
|
|
|
"install-mastodon": "node ./bin/install-mastodon.js",
|
|
|
|
"run-mastodon": "node ./bin/run-mastodon.js",
|
2019-01-28 01:44:30 +00:00
|
|
|
"test": "cross-env BROWSER=chrome:headless run-s test-browser",
|
2018-05-26 21:51:41 +01:00
|
|
|
"test-browser": "run-p --race run-mastodon build-and-start test-mastodon",
|
|
|
|
"test-mastodon": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe",
|
2021-07-03 21:15:44 +01:00
|
|
|
"test-mastodon-suite0": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite0",
|
|
|
|
"test-mastodon-suite1": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite1",
|
2018-05-27 17:27:29 +01:00
|
|
|
"testcafe": "run-s testcafe-suite0 testcafe-suite1",
|
2022-11-12 17:46:45 +00:00
|
|
|
"testcafe-suite0": "cross-env-shell testcafe $BROWSER tests/spec/0*",
|
2019-11-09 22:25:33 +00:00
|
|
|
"testcafe-suite1": "cross-env-shell testcafe $BROWSER tests/spec/1*",
|
2021-07-05 04:19:04 +01:00
|
|
|
"test-unit": "NODE_ENV=test mocha -r bin/browser-shim.js tests/unit/",
|
2021-07-03 21:15:44 +01:00
|
|
|
"test-in-ci-suite0": "cross-env BROWSER=chrome:headless run-p --race run-mastodon start test-mastodon-suite0",
|
|
|
|
"test-in-ci-suite1": "cross-env BROWSER=chrome:headless run-p --race run-mastodon start test-mastodon-suite1",
|
2021-07-05 04:19:04 +01:00
|
|
|
"wait-for-mastodon-to-start": "node bin/wait-for-mastodon-to-start.js",
|
|
|
|
"wait-for-mastodon-data": "node bin/wait-for-mastodon-data.js",
|
2018-12-11 15:31:48 +00:00
|
|
|
"backup-mastodon-data": "./bin/backup-mastodon-data.sh",
|
2021-07-05 04:19:04 +01:00
|
|
|
"sapper-export": "cross-env PORT=22939 WEBPACK_CONFIG_FILE=webpack/webpack.config.cjs SERVER_FILE_EXT=cjs node ./node_modules/sapper/sapper export",
|
2018-12-11 15:31:48 +00:00
|
|
|
"print-export-info": "node ./bin/print-export-info.js",
|
2019-01-12 18:17:37 +00:00
|
|
|
"export-steps": "run-s before-build sapper-export print-export-info",
|
2019-02-16 03:46:27 +00:00
|
|
|
"export": "cross-env NODE_ENV=production run-s export-steps",
|
2019-02-16 22:30:34 +00:00
|
|
|
"now-build": "run-s export",
|
2021-07-05 04:19:04 +01:00
|
|
|
"build-vercel-json": "node bin/build-vercel-json.js"
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-17 15:44:50 +00:00
|
|
|
"@formatjs/intl-listformat": "^7.1.3",
|
|
|
|
"@formatjs/intl-locale": "^3.0.7",
|
|
|
|
"@formatjs/intl-pluralrules": "^5.1.4",
|
|
|
|
"@formatjs/intl-relativetimeformat": "^11.1.4",
|
2021-07-05 04:19:04 +01:00
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
2021-05-15 21:28:31 +01:00
|
|
|
"@rollup/plugin-replace": "^2.4.2",
|
2022-11-18 02:26:41 +00:00
|
|
|
"@stdlib/utils-noop": "^0.0.13",
|
2020-06-29 07:12:14 +01:00
|
|
|
"arrow-key-navigation": "^1.2.0",
|
2022-02-18 20:56:05 +00:00
|
|
|
"blurhash": "^1.1.5",
|
2021-07-05 00:38:58 +01:00
|
|
|
"cheerio": "1.0.0-rc.10",
|
2018-06-03 23:30:37 +01:00
|
|
|
"child-process-promise": "^2.2.1",
|
2022-02-18 20:56:05 +00:00
|
|
|
"chokidar": "^3.5.3",
|
2021-02-20 21:40:45 +00:00
|
|
|
"circular-dependency-plugin": "^5.2.2",
|
2019-03-21 19:51:08 +00:00
|
|
|
"compression": "^1.7.4",
|
2022-11-18 02:26:41 +00:00
|
|
|
"country-flag-emoji-polyfill": "^0.1.4",
|
2021-02-15 23:07:35 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2019-02-12 05:04:19 +00:00
|
|
|
"css-dedoupe": "^0.1.1",
|
2022-11-18 02:26:29 +00:00
|
|
|
"emoji-picker-element": "^1.13.1",
|
2022-02-18 20:56:05 +00:00
|
|
|
"emoji-picker-element-data": "^1.3.0",
|
2022-11-18 17:32:46 +00:00
|
|
|
"emoji-regex": "^10.2.1",
|
2020-07-20 15:02:05 +01:00
|
|
|
"encoding": "^0.1.13",
|
2022-11-18 02:26:41 +00:00
|
|
|
"es-main": "^1.2.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"escape-html": "^1.0.3",
|
2019-05-25 16:19:05 +01:00
|
|
|
"esm": "^3.2.25",
|
2018-12-04 14:44:13 +00:00
|
|
|
"events-light": "^1.0.5",
|
2022-11-18 02:26:41 +00:00
|
|
|
"express": "^4.18.2",
|
2018-06-03 23:30:37 +01:00
|
|
|
"file-api": "^0.10.4",
|
2021-02-15 23:07:13 +00:00
|
|
|
"file-drop-element": "^1.0.1",
|
2021-02-20 21:40:45 +00:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"focus-visible": "^5.2.0",
|
2021-05-15 17:00:18 +01:00
|
|
|
"form-data": "^4.0.0",
|
2022-02-18 20:56:05 +00:00
|
|
|
"format-message-interpret": "^6.2.4",
|
|
|
|
"format-message-parse": "^6.2.4",
|
|
|
|
"glob": "^7.2.0",
|
2021-04-11 15:42:30 +01:00
|
|
|
"is-emoji-supported": "^0.0.5",
|
2020-06-30 05:16:22 +01:00
|
|
|
"li": "^1.3.0",
|
2018-12-06 05:34:30 +00:00
|
|
|
"localstorage-memory": "^1.0.3",
|
2020-07-05 20:07:17 +01:00
|
|
|
"mkdirp": "^1.0.4",
|
2022-02-06 19:37:59 +00:00
|
|
|
"node-fetch": "^2.6.7",
|
2018-11-25 05:21:42 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-07-16 15:14:06 +01:00
|
|
|
"p-any": "^4.0.0",
|
2019-10-16 01:27:41 +01:00
|
|
|
"page-lifecycle": "^0.1.2",
|
2019-02-24 07:34:48 +00:00
|
|
|
"pinch-zoom-element": "^1.1.1",
|
2019-08-17 22:36:13 +01:00
|
|
|
"promise-worker": "^2.0.1",
|
2022-02-18 20:56:05 +00:00
|
|
|
"prop-types": "^15.8.1",
|
2018-06-03 23:30:37 +01:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2022-02-18 20:56:05 +00:00
|
|
|
"rollup": "^2.67.3",
|
2020-09-07 22:42:50 +01:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2022-02-18 20:56:05 +00:00
|
|
|
"rtl-detect": "^1.0.4",
|
2021-07-16 15:14:06 +01:00
|
|
|
"safari-14-idb-fix": "^1.0.4",
|
2021-07-05 04:19:04 +01:00
|
|
|
"sapper": "nolanlawson/sapper#for-pinafore-26",
|
2022-11-18 02:26:41 +00:00
|
|
|
"sass": "^1.56.1",
|
2020-03-03 13:53:18 +00:00
|
|
|
"stringz": "^2.1.0",
|
2019-02-15 03:38:42 +00:00
|
|
|
"svelte": "^2.16.1",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-extras": "^2.0.2",
|
2019-10-16 01:27:36 +01:00
|
|
|
"svelte-loader": "^2.13.6",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-transitions": "^1.2.0",
|
2022-02-18 20:56:05 +00:00
|
|
|
"svgo": "^2.8.0",
|
2022-11-18 02:26:41 +00:00
|
|
|
"terser-webpack-plugin": "^5.3.6",
|
2022-02-18 20:56:05 +00:00
|
|
|
"tesseract.js": "^2.1.5",
|
2020-07-05 20:37:33 +01:00
|
|
|
"tesseract.js-core": "^2.2.0",
|
2019-02-12 05:04:19 +00:00
|
|
|
"text-encoding": "^0.7.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"tiny-queue": "^0.2.1",
|
2022-11-17 15:44:40 +00:00
|
|
|
"webpack": "^5.75.0",
|
|
|
|
"webpack-bundle-analyzer": "^4.7.0",
|
2021-02-20 21:40:45 +00:00
|
|
|
"worker-loader": "^3.0.8"
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
2018-03-29 02:46:46 +01:00
|
|
|
"devDependencies": {
|
2019-05-19 16:07:27 +01:00
|
|
|
"assert": "^2.0.0",
|
2022-11-18 17:32:31 +00:00
|
|
|
"eslint-plugin-html": "^7.1.0",
|
|
|
|
"fake-indexeddb": "^4.0.0",
|
|
|
|
"globby": "^13.1.2",
|
|
|
|
"husky": "^8.0.2",
|
|
|
|
"lint-staged": "^13.0.3",
|
2022-11-18 01:09:37 +00:00
|
|
|
"mocha": "^10.1.0",
|
2022-11-18 17:32:31 +00:00
|
|
|
"standard": "^17.0.0",
|
|
|
|
"testcafe": "^1.20.1"
|
2018-03-29 02:46:46 +01:00
|
|
|
},
|
2018-02-09 06:29:29 +00:00
|
|
|
"standard": {
|
2021-07-05 04:19:04 +01:00
|
|
|
"ignore": [
|
|
|
|
"webpack/*.cjs"
|
|
|
|
],
|
2018-02-09 06:29:29 +00:00
|
|
|
"globals": [
|
2019-09-08 04:27:47 +01:00
|
|
|
"AbortController",
|
|
|
|
"Blob",
|
|
|
|
"CSS",
|
|
|
|
"DOMParser",
|
|
|
|
"Element",
|
|
|
|
"Element",
|
|
|
|
"Event",
|
|
|
|
"FormData",
|
2020-06-29 07:12:14 +01:00
|
|
|
"HTMLElement",
|
2018-02-09 06:29:29 +00:00
|
|
|
"IDBKeyRange",
|
|
|
|
"IDBObjectStore",
|
2019-09-08 04:27:47 +01:00
|
|
|
"Image",
|
|
|
|
"ImageData",
|
2018-02-09 06:29:29 +00:00
|
|
|
"IntersectionObserver",
|
2019-09-08 04:27:47 +01:00
|
|
|
"MessageChannel",
|
|
|
|
"NodeList",
|
|
|
|
"NotificationEvent",
|
|
|
|
"OffscreenCanvas",
|
2019-10-07 15:15:05 +01:00
|
|
|
"PointerEvent",
|
2019-10-19 03:03:04 +01:00
|
|
|
"Response",
|
2018-02-09 06:31:05 +00:00
|
|
|
"URL",
|
2019-09-08 04:27:47 +01:00
|
|
|
"WebSocket",
|
|
|
|
"__assets__",
|
2018-02-09 06:31:05 +00:00
|
|
|
"__routes__",
|
|
|
|
"__shell__",
|
2018-03-03 01:54:38 +00:00
|
|
|
"atob",
|
|
|
|
"btoa",
|
2019-09-08 04:27:47 +01:00
|
|
|
"caches",
|
2019-05-07 04:29:43 +01:00
|
|
|
"customElements",
|
2019-09-08 04:27:47 +01:00
|
|
|
"fetch",
|
|
|
|
"fixture",
|
|
|
|
"getComputedStyle",
|
|
|
|
"history",
|
|
|
|
"indexedDB",
|
|
|
|
"localStorage",
|
|
|
|
"location",
|
2019-08-04 21:31:51 +01:00
|
|
|
"matchMedia",
|
2019-09-08 04:27:47 +01:00
|
|
|
"performance",
|
2019-08-22 17:09:21 +01:00
|
|
|
"postMessage",
|
2020-04-27 00:54:00 +01:00
|
|
|
"queueMicrotask",
|
2019-09-08 04:27:47 +01:00
|
|
|
"requestAnimationFrame",
|
|
|
|
"requestIdleCallback",
|
|
|
|
"self",
|
|
|
|
"test"
|
2018-02-09 06:29:29 +00:00
|
|
|
]
|
2018-03-06 04:29:49 +00:00
|
|
|
},
|
2018-03-29 02:22:30 +01:00
|
|
|
"esm": {
|
|
|
|
"mode": "auto",
|
2018-03-06 04:51:42 +00:00
|
|
|
"cjs": "vars"
|
2018-03-12 03:37:24 +00:00
|
|
|
},
|
2018-06-23 17:51:37 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nolanlawson/pinafore.git"
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "Nolan Lawson <nolan@nolanlawson.com>",
|
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/nolanlawson/pinafore/issues"
|
|
|
|
},
|
2020-08-30 03:18:59 +01:00
|
|
|
"homepage": "https://github.com/nolanlawson/pinafore#readme",
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "standard --fix",
|
|
|
|
"*.html": "standard --fix --plugin html 'src/routes/**/*.html'"
|
2021-07-29 05:55:17 +01:00
|
|
|
},
|
|
|
|
"volta": {
|
2022-11-18 01:09:37 +00:00
|
|
|
"node": "14.21.1",
|
2022-11-12 18:17:52 +00:00
|
|
|
"yarn": "1.22.19"
|
2020-08-30 03:18:59 +01:00
|
|
|
}
|
2018-01-06 23:51:25 +00:00
|
|
|
}
|