-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.21 KB
/
package.json
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
{
"name": "logseq-live-math",
"version": "1.4.3",
"description": "Type LaTeX in live mode!",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts src/parent.ts --minify --bundle --loader:.css=text --outdir=dist",
"format": "prettier -w src/ README.md index.html .github/"
},
"keywords": [],
"author": "Allan Chain",
"license": "MIT",
"dependencies": {
"mathlive": "^0.102.0"
},
"devDependencies": {
"@logseq/libs": "^0.0.17",
"@tsconfig/recommended": "^1.0.8",
"esbuild": "^0.24.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1"
},
"logseq": {
"title": "Live Math",
"id": "logseq-live-math",
"main": "index.html",
"icon": "icon.svg"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{ts,css,md,html,json}": "prettier --write"
},
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b",
"pnpm": {
"overrides": {
"dompurify@<2.5.4": ">=2.5.4",
"dompurify@<2.5.0": ">=2.5.0",
"dompurify@<2.4.2": ">=2.4.2",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5"
}
}
}