-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dropdeck",
"version": "0.0.0",
"author": "Brian Ferri",
"description": "Drop a Markdown file, get a presentation. A self-contained, themeable deck renderer that builds to a single HTML file.",
"type": "module",
"imports": {
"#/*": "./src/*"
},
"workspaces": [
"packages/common",
"packages/xml",
"packages/html",
"packages/pptx",
"packages/xlsx",
"packages/markdown",
"packages/math",
"packages/latex"
],
"scripts": {
"dev": "vite",
"prebuild": "npm run build --workspaces --if-present",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"precheck": "npm run build --workspaces --if-present",
"check": "npm run check --workspaces --if-present && tsc --noEmit && eslint .",
"check:fix": "eslint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^63.0.4",
"happy-dom": "^20.10.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.2",
"vite": "^6.1.0",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.9"
},
"dependencies": {
"@dropdeck/common": "*",
"@dropdeck/html": "*",
"@dropdeck/latex": "*",
"@dropdeck/markdown": "*",
"@dropdeck/math": "*",
"@dropdeck/pptx": "*",
"@dropdeck/xml": "*",
"@tailwindcss/browser": "^4.0.0"
},
"license": "ISC"
}