-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@evyu/latex-editor",
"version": "0.0.8",
"description": "this is a latex editor package, it provide some help with writing math formula even if you don't understand latex.",
"main": "./latex-lib/index.umd.js",
"module": "./latex-lib/index.es.js",
"scripts": {
"husky": "husky install",
"build-latex": "vite build -c viteconfig.lib.build.ts && cp latex-lib/* demo",
"dev": "vite --mode development",
"build-project": "vite build && rm -rf demo/assets && cp -r dist/* demo",
"deploy": "npm run build-latex && npm run build-project"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evy-u/latex-editor.git"
},
"author": "evyu",
"license": "MIT",
"dependencies": {
"@evyu/common-lib": "^0.0.1",
"@types/lodash": "^4.14.194",
"@vant/touch-emulator": "^1.4.0",
"chalk": "^5.0.0",
"element-plus": "^1.3.0-beta.5",
"html2canvas": "^1.4.1",
"lodash": "^4.17.21",
"recursive-match": "^1.0.2",
"redom": "^3.29.1",
"rollup-plugin-uglify": "^6.0.4",
"sass": "^1.46.0",
"shortcuts": "^2.0.3",
"typescript": "^4.7.2",
"uid": "^2.0.0",
"vant": "^4.0.2",
"vite": "^4.3.1",
"vite-plugin-dts": "^1.2.0",
"vue": "^3.2.26",
"vue-router": "^4.0.14",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@rollup/plugin-strip": "^2.1.0",
"@types/node": "^17.0.8",
"@vitejs/plugin-vue": "^2.0.1",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4",
"unplugin-vue-components": "^0.22.12"
},
"types": "types/package/index.d.ts",
"style": "./dist/style.css",
"files": [
"dist",
"types",
"README.md",
"demo.gif"
],
"keywords": [
"latex-editor",
"latex",
"mathjax"
],
"bugs": {
"url": "https://github.com/evy-u/latex-editor/issues"
},
"homepage": "https://github.com/evy-u/latex-editor#readme",
"publishConfig": {
"access": "public"
}
}