-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 959 Bytes
/
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": "himark",
"version": "1.0.0",
"description": "Markdown editor for discussion based applications",
"keywords": [],
"author": "Lachee",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"type": "module",
"module": "./dist/himark-md.es.js",
"main": "./dist/himark-md.umd.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/himark-md.es.js",
"require": "./dist/himark-md.umd.cjs"
}
},
"dependencies": {
"codemirror": "^5.65.13",
"tributejs": "^5.1.3"
},
"devDependencies": {
"@types/codemirror": "^5.60.7",
"marked": "^5.0.2",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"postcss-plugin": "^1.0.0",
"postcss-url": "^10.1.3",
"terser": "^5.17.6",
"typescript": "^5.0.2",
"vite": "^4.3.2"
},
"postcss": {
"plugins": {
"postcss-plugin": {}
}
}
}