-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "mtrgen-template-editor",
"author": "Matronator",
"description": "Editor for MTRGen templates",
"license": "MIT",
"version": "1.1.10",
"homepage": "https://github.com/matronator/mtrgen-template-editor",
"repository": {
"type": "git",
"url": "https://github.com/matronator/mtrgen-template-editor.git"
},
"bugs": {
"url": "https://github.com/matronator/mtrgen-template-editor/issues"
},
"main": "./dist/mtrgen-template-editor.umd.cjs",
"module": "./dist/mtrgen-template-editor.js",
"type": "module",
"types": "./dist/index.d.ts",
"dependencies": {
"bootstrap": "^5.2.2",
"react": "^18.2.0",
"react-bootstrap": "^2.6.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-css-injected-by-js": "^2.4.0",
"vite-plugin-dts": "^1.7.2"
},
"exports": {
".": {
"import": "./dist/mtrgen-template-editor.js",
"require": "./dist/mtrgen-template-editor.umd.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"mtrgen",
"template",
"editor",
"react",
"component"
],
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview"
}
}