-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "mermaid-translator",
"version": "1.1.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "oxlint ./src",
"lint:types": "tsgolint --tsconfig ./tsconfig.lint.json",
"format": "oxfmt --write .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"e2e": "cross-env PLAYWRIGHT_TS_CONFIG=tsconfig.playwright.json playwright test",
"dev": "vite",
"build": "vite build --config vite.config.ts && vite build --config vite.config.popup.ts",
"build:dev": "cross-env VITE_ENABLE_LOGGING=true vite build --config vite.config.ts && vite build --config vite.config.popup.ts",
"prepare": "husky",
"codacy:issues": "node ./scripts/codacy-issues.js",
"docs": "typedoc && node ./scripts/serve-typedocs.js"
},
"dependencies": {
"dompurify": "^3.4.0",
"mermaid": "^11.12.2",
"preact": "^10.28.2"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@preact/preset-vite": "^2.10.2",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"oxlint-tsgolint": "^0.1.3",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mts,json,css,md}": [
"oxfmt --write",
"oxlint --fix"
]
},
"packageManager": "pnpm@10.18.2"
}