-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "lookout",
"version": "1.1.5",
"description": "Survey wide content instead of scrolling sideways — pan/zoom Mermaid diagrams and open wide tables full-screen in Obsidian.",
"main": "main.js",
"private": true,
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint \"src/**/*.ts\"",
"validate": "node scripts/validate.mjs",
"test:e2e": "npm run test:e2e:table && npm run test:e2e:diagram",
"test:e2e:table": "node tests/e2e/table-fullscreen.test.mjs",
"test:e2e:diagram": "node tests/e2e/diagram-fit.test.mjs"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"mermaid",
"diagram",
"table"
],
"author": "Post-Math",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"obsidian": "^1.6.0",
"playwright-core": "^1.48.0",
"tslib": "^2.6.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.62.0"
}
}