-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "vue3-mathjax",
"private": false,
"version": "0.0.3",
"main": "dist/vue3-mathjax.umd.js",
"module": "dist/vue3-mathjax.es.js",
"types": "types/index.d.ts",
"description": "A Vue 3 component for MathJax",
"homepage": "https://github.com/DarkHighness/vue-mathjax",
"repository": {
"type": "git",
"url": "https://github.com/DarkHighness/vue-mathjax"
},
"bugs": {
"url": "https://github.com/DarkHighness/vue-mathjax/issues"
},
"files": [
"dist/*",
"types/*"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"format": "prettier --write src/**/*.{js,ts,vue,tsx}"
},
"dependencies": {
"throttle-debounce": "^3.0.1",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/throttle-debounce": "^2.1.0",
"@vitejs/plugin-vue": "^2.2.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-dts": "^0.9.9",
"vue-tsc": "^0.29.8"
},
"license": "MIT",
"keywords": [
"mathjax",
"vue"
]
}