2021-10-17 14:47:48 +00:00
|
|
|
{
|
2021-12-03 17:18:20 +00:00
|
|
|
"name": "remotely-save",
|
2022-05-10 13:25:20 +00:00
|
|
|
"version": "0.3.25",
|
2021-10-17 14:50:12 +00:00
|
|
|
"description": "This is yet another sync plugin for Obsidian app.",
|
2021-10-17 14:47:48 +00:00
|
|
|
"scripts": {
|
2022-01-08 06:36:22 +00:00
|
|
|
"dev2": "node esbuild.config.mjs",
|
2021-11-30 17:49:29 +00:00
|
|
|
"build2": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
|
|
"build": "webpack --mode production",
|
2022-01-08 06:36:22 +00:00
|
|
|
"dev": "webpack --mode development --watch",
|
2021-10-17 14:50:12 +00:00
|
|
|
"format": "npx prettier --write .",
|
2021-11-04 17:21:58 +00:00
|
|
|
"clean": "npx rimraf main.js",
|
2021-11-07 06:51:00 +00:00
|
|
|
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -r ts-node/register 'tests/**/*.ts'"
|
2021-10-17 14:50:12 +00:00
|
|
|
},
|
2021-11-27 06:45:46 +00:00
|
|
|
"browser": {
|
|
|
|
"path": "path-browserify",
|
|
|
|
"process": "process/browser",
|
2021-12-28 16:35:46 +00:00
|
|
|
"stream": "stream-browserify",
|
2022-02-12 04:28:47 +00:00
|
|
|
"crypto": "crypto-browserify",
|
|
|
|
"url": "url/"
|
2021-11-27 06:45:46 +00:00
|
|
|
},
|
2021-10-17 14:50:12 +00:00
|
|
|
"source": "main.ts",
|
2021-10-17 14:47:48 +00:00
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
2021-10-17 14:50:12 +00:00
|
|
|
"license": "Apache-2.0",
|
2021-10-17 14:47:48 +00:00
|
|
|
"devDependencies": {
|
2022-04-30 06:22:34 +00:00
|
|
|
"@microsoft/microsoft-graph-types": "^2.19.0",
|
|
|
|
"@types/chai": "^4.3.1",
|
|
|
|
"@types/chai-as-promised": "^7.1.5",
|
|
|
|
"@types/jsdom": "^16.2.14",
|
|
|
|
"@types/lodash": "^4.14.182",
|
2021-11-04 15:58:20 +00:00
|
|
|
"@types/mime-types": "^2.1.1",
|
2022-04-30 06:22:34 +00:00
|
|
|
"@types/mocha": "^9.1.1",
|
2022-03-20 07:54:57 +00:00
|
|
|
"@types/mustache": "^4.1.2",
|
2022-04-30 06:22:34 +00:00
|
|
|
"@types/node": "^17.0.30",
|
|
|
|
"@types/qrcode": "^1.4.2",
|
2021-11-27 06:45:46 +00:00
|
|
|
"builtin-modules": "^3.2.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"chai": "^4.3.6",
|
2021-11-08 02:00:06 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2021-11-07 06:51:00 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2022-04-30 06:22:34 +00:00
|
|
|
"dotenv": "^16.0.0",
|
2022-04-30 03:59:18 +00:00
|
|
|
"esbuild": "^0.14.38",
|
2021-12-11 14:45:21 +00:00
|
|
|
"jsdom": "^19.0.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"mocha": "^9.2.2",
|
|
|
|
"prettier": "^2.6.2",
|
|
|
|
"ts-loader": "^9.2.9",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"tslib": "^2.4.0",
|
|
|
|
"typescript": "^4.6.4",
|
2021-11-30 17:49:29 +00:00
|
|
|
"webdav-server": "^2.6.2",
|
2022-04-30 06:22:34 +00:00
|
|
|
"webpack": "^5.72.0",
|
|
|
|
"webpack-cli": "^4.9.2"
|
2021-10-17 14:50:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-30 06:22:34 +00:00
|
|
|
"@aws-sdk/client-s3": "^3.81.0",
|
|
|
|
"@aws-sdk/fetch-http-handler": "^3.78.0",
|
|
|
|
"@aws-sdk/lib-storage": "^3.81.0",
|
|
|
|
"@aws-sdk/protocol-http": "^3.78.0",
|
|
|
|
"@aws-sdk/querystring-builder": "^3.78.0",
|
|
|
|
"@aws-sdk/signature-v4-crt": "^3.78.0",
|
|
|
|
"@aws-sdk/types": "^3.78.0",
|
|
|
|
"@azure/msal-node": "^1.8.0",
|
2022-01-22 09:11:12 +00:00
|
|
|
"@fyears/tsqueue": "^1.0.1",
|
2022-04-30 06:22:34 +00:00
|
|
|
"@microsoft/microsoft-graph-client": "^3.0.2",
|
|
|
|
"acorn": "^8.7.1",
|
2022-04-07 15:59:50 +00:00
|
|
|
"aggregate-error": "^4.0.0",
|
2021-11-28 04:20:38 +00:00
|
|
|
"assert": "^2.0.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"aws-crt": "^1.12.1",
|
2021-10-27 02:15:14 +00:00
|
|
|
"buffer": "^6.0.3",
|
2021-11-28 04:20:38 +00:00
|
|
|
"crypto-browserify": "^3.12.0",
|
2022-04-16 09:02:07 +00:00
|
|
|
"delay": "^5.0.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"dropbox": "^10.28.0",
|
2022-04-16 03:36:04 +00:00
|
|
|
"emoji-regex": "^10.1.0",
|
2022-03-10 15:54:35 +00:00
|
|
|
"http-status-codes": "^2.2.0",
|
2021-11-14 12:24:33 +00:00
|
|
|
"localforage": "^1.10.0",
|
2022-01-01 10:37:48 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-01-04 16:10:55 +00:00
|
|
|
"loglevel": "^1.8.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"lucide": "^0.35.0",
|
|
|
|
"mime-types": "^2.1.35",
|
2022-03-20 07:54:57 +00:00
|
|
|
"mustache": "^4.2.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"nanoid": "^3.3.3",
|
|
|
|
"obsidian": "^0.14.6",
|
2022-03-06 10:12:49 +00:00
|
|
|
"p-queue": "^7.2.0",
|
2021-10-27 02:15:14 +00:00
|
|
|
"path-browserify": "^1.0.1",
|
|
|
|
"process": "^0.11.10",
|
2021-12-11 09:33:55 +00:00
|
|
|
"qrcode": "^1.5.0",
|
2022-04-30 06:22:34 +00:00
|
|
|
"rfc4648": "^1.5.1",
|
2021-10-17 14:50:12 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2021-10-27 02:15:14 +00:00
|
|
|
"stream-browserify": "^3.0.0",
|
2022-02-12 04:28:47 +00:00
|
|
|
"url": "^0.11.0",
|
2021-11-28 04:20:38 +00:00
|
|
|
"util": "^0.12.4",
|
2022-04-30 06:22:34 +00:00
|
|
|
"webdav": "^4.9.0",
|
|
|
|
"webdav-fs": "^4.0.1",
|
2021-11-09 16:16:24 +00:00
|
|
|
"xregexp": "^5.1.0"
|
2021-10-17 14:47:48 +00:00
|
|
|
}
|
|
|
|
}
|