-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.86 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
{
"name": "merview",
"version": "1.0.0",
"description": "A client-side markdown editor with live Mermaid diagram rendering",
"main": "index.html",
"scripts": {
"start": "npx http-server -p 8080 -o",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:report": "npx playwright show-report",
"test:unit": "npx playwright test tests/unit/",
"test:core": "npx playwright test tests/core/",
"test:mermaid": "npx playwright test tests/mermaid/",
"test:yaml": "npx playwright test tests/yaml/",
"test:url": "npx playwright test tests/url/",
"test:file-ops": "npx playwright test tests/file-ops/",
"test:security": "npx playwright test tests/security/",
"test:ui-tests": "npx playwright test tests/ui/",
"test:i18n": "npx playwright test tests/i18n/",
"test:docs": "npx playwright test tests/docs/",
"test:lint-panel": "npx playwright test tests/lint/",
"lint": "eslint js/",
"verify:docs": "node scripts/verify-docs.js",
"check:links": "npx lychee --config .lychee.toml '**/*.md' 'index.html'",
"check:ui-refs": "node scripts/verify-ui-references.js",
"docker:build": "docker build -t merview:latest .",
"docker:run": "docker run -d -p 8080:80 --name merview merview:latest",
"docker:stop": "docker stop merview && docker rm merview",
"docker:logs": "docker logs -f merview",
"docker:compose:up": "docker-compose up -d",
"docker:compose:down": "docker-compose down",
"docker:compose:logs": "docker-compose logs -f"
},
"keywords": [
"markdown",
"mermaid",
"renderer",
"pdf"
],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.57.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"http-server": "^14.1.1"
}
}