-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "noted",
"version": "1.5.0",
"private": true,
"description": "Noted - browser-native Markdown/.docx/.html viewer and editor",
"license": "MIT",
"type": "module",
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.sw.json",
"lint": "eslint .",
"build": "esbuild src/main.ts --bundle --format=esm --target=es2022 --outdir=dist --external:buffer && esbuild src/sw.ts --bundle --format=esm --target=es2022 --outfile=sw.js --external:buffer"
},
"dependencies": {
"docx": "^9.7.1",
"dompurify": "^3.4.13",
"mammoth": "^1.12.1",
"marked": "^13.0.0"
},
"devDependencies": {
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"jsdom": "^24.1.0",
"jszip": "^3.10.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.67.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20"
}
}