2019-11-27 18:03:22 +05:00
|
|
|
{
|
2022-08-29 23:30:48 +05:00
|
|
|
"name": "@notesnook/core",
|
2024-07-20 10:34:28 +05:00
|
|
|
"version": "8.0.8",
|
2023-10-24 11:39:12 +05:00
|
|
|
"main": "dist/index.js",
|
2022-09-26 15:30:16 +05:00
|
|
|
"license": "GPL-3.0-or-later",
|
2022-07-15 09:30:01 +05:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git://github.com/streetwriters/notesnook-core.git"
|
|
|
|
|
},
|
2019-11-28 15:19:08 +05:00
|
|
|
"devDependencies": {
|
2023-07-06 09:09:10 +05:00
|
|
|
"@notesnook/crypto": "file:../crypto",
|
2023-10-02 09:40:10 +05:00
|
|
|
"@types/better-sqlite3": "^7.6.5",
|
2023-08-21 13:32:06 +05:00
|
|
|
"@types/event-source-polyfill": "^1.0.1",
|
2023-04-17 18:09:29 +05:00
|
|
|
"@types/html-to-text": "^9.0.0",
|
2023-08-21 13:32:06 +05:00
|
|
|
"@types/katex": "^0.16.2",
|
2023-09-18 15:38:43 +05:00
|
|
|
"@types/mime-db": "^1.43.1",
|
2023-03-09 16:45:32 +05:00
|
|
|
"@types/prismjs": "^1.26.0",
|
2023-08-21 13:32:06 +05:00
|
|
|
"@types/spark-md5": "^3.0.2",
|
2024-01-27 18:59:35 +05:00
|
|
|
"@types/streetwriters__showdown": "npm:@types/showdown@^2.0.6",
|
2023-08-21 13:32:06 +05:00
|
|
|
"@types/ws": "^8.5.5",
|
2023-12-05 15:34:18 +05:00
|
|
|
"@vitest/coverage-v8": "^1.0.1",
|
2021-12-27 19:13:54 +00:00
|
|
|
"abortcontroller-polyfill": "^1.7.3",
|
2024-02-19 16:34:03 +05:00
|
|
|
"better-sqlite3-multiple-ciphers": "^9.4.0",
|
2023-10-09 11:11:42 +05:00
|
|
|
"bson-objectid": "^2.0.4",
|
2022-07-20 07:19:19 +05:00
|
|
|
"dotenv": "^16.0.1",
|
2023-09-11 12:32:02 +05:00
|
|
|
"event-source-polyfill": "^1.0.31",
|
2022-07-20 07:19:19 +05:00
|
|
|
"eventsource": "^2.0.2",
|
2023-09-11 12:32:02 +05:00
|
|
|
"hash-wasm": "^4.9.0",
|
2023-08-12 20:35:36 +05:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2023-09-06 09:39:56 +05:00
|
|
|
"jsdom": "^22.1.0",
|
2023-01-06 12:55:59 +05:00
|
|
|
"mockdate": "^3.0.5",
|
2023-10-09 11:11:42 +05:00
|
|
|
"nanoid": "^5.0.1",
|
2023-08-12 19:49:26 +05:00
|
|
|
"otplib": "^12.0.1",
|
2023-08-12 20:33:01 +05:00
|
|
|
"refractor": "^4.8.1",
|
2023-12-05 15:34:18 +05:00
|
|
|
"vitest": "^1.0.1",
|
2023-08-21 13:32:06 +05:00
|
|
|
"vitest-fetch-mock": "^0.2.2",
|
|
|
|
|
"ws": "^8.13.0"
|
2019-11-28 15:19:08 +05:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-12-21 08:57:30 +05:00
|
|
|
"postinstall": "patch-package",
|
2023-08-12 20:33:01 +05:00
|
|
|
"prebuild": "node scripts/prebuild.mjs",
|
|
|
|
|
"pretest": "node scripts/prebuild.mjs",
|
|
|
|
|
"pretest:e2e": "node scripts/prebuild.mjs",
|
2023-08-12 19:55:54 +05:00
|
|
|
"build": "tsc",
|
2023-10-24 15:58:26 +05:00
|
|
|
"watch": "tsc --watch",
|
2023-08-12 19:49:26 +05:00
|
|
|
"test:e2e": "cross-env IS_E2E=true vitest run",
|
2024-02-10 11:00:15 +05:00
|
|
|
"test": "vitest run"
|
2019-11-29 21:28:31 +05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-10-07 13:26:03 +05:00
|
|
|
"@leeoniya/ufuzzy": "^1.0.10",
|
2024-03-18 08:15:42 +05:00
|
|
|
"@microsoft/signalr": "^8.0.0",
|
2023-07-06 09:09:10 +05:00
|
|
|
"@notesnook/logger": "file:../logger",
|
2024-01-26 20:12:59 +05:00
|
|
|
"@readme/data-urls": "^3.0.0",
|
2024-04-24 11:45:00 +05:00
|
|
|
"@streetwriters/showdown": "^3.0.7-alpha",
|
2021-10-26 23:06:52 +05:00
|
|
|
"async-mutex": "^0.3.2",
|
2023-07-28 09:13:50 +05:00
|
|
|
"dayjs": "1.11.9",
|
2024-03-07 11:15:16 +05:00
|
|
|
"dom-serializer": "^2.0.0",
|
|
|
|
|
"domhandler": "^5.0.3",
|
|
|
|
|
"domutils": "^3.1.0",
|
2022-07-20 07:19:19 +05:00
|
|
|
"entities": "^4.3.1",
|
2023-11-11 13:05:03 +05:00
|
|
|
"fuzzyjs": "^5.0.1",
|
2023-04-17 18:09:29 +05:00
|
|
|
"html-to-text": "^9.0.5",
|
2022-11-23 14:58:34 +05:00
|
|
|
"htmlparser2": "^8.0.1",
|
2023-07-28 09:13:50 +05:00
|
|
|
"katex": "0.16.2",
|
2023-10-02 09:40:10 +05:00
|
|
|
"kysely": "^0.26.3",
|
2022-10-13 19:22:32 +05:00
|
|
|
"linkedom": "^0.14.17",
|
2021-12-27 19:13:54 +00:00
|
|
|
"liqe": "^1.13.0",
|
2023-04-17 18:09:29 +05:00
|
|
|
"mime-db": "1.52.0",
|
2023-03-09 16:45:32 +05:00
|
|
|
"prismjs": "^1.29.0",
|
2022-10-19 12:10:31 +05:00
|
|
|
"qclone": "^1.2.0",
|
2023-08-21 13:32:06 +05:00
|
|
|
"rfdc": "^1.3.0",
|
2023-04-17 18:09:29 +05:00
|
|
|
"spark-md5": "^3.0.2"
|
2022-07-15 14:48:44 +05:00
|
|
|
},
|
2022-11-23 14:58:34 +05:00
|
|
|
"overrides": {
|
|
|
|
|
"htmlparser2": "^8.0.1"
|
2019-11-28 15:19:08 +05:00
|
|
|
}
|
2020-10-03 11:59:20 +05:00
|
|
|
}
|