-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
{
"type": "module",
"name": "@luma-dev/my-katex",
"version": "0.0.0-dev",
"description": "",
"files": [
"dist",
"!*.tsbuildinfo"
],
"exports": {
".": "./dist/main.js",
"./react": "./dist/react.js"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx . && prettier --list-different .",
"lint-fix": "eslint --ext .ts,.tsx . --fix && prettier --write .",
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"typecheck-watch": "tsc --noEmit --watch",
"test": "vitest",
"example": "vite example --port 5173 --host"
},
"keywords": [],
"author": "Luma <[email protected]>",
"license": "CC0-1.0",
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^20.11.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^23.0.0",
"shx": "^0.3.4",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"packageManager": "[email protected]+sha256.ec92e7332e3f7aef6feb2b3c9585fde534cd56905cf26e77debc69e4e2b44892",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@luma-dev/unist-util-visit-fast": "^1.0.1",
"inline-style-parser": "^0.2.2",
"katex": "^0.16.9",
"rehype-parse": "^9.0.0",
"unified": "^11.0.4"
}
}