-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "vanjs-converter",
"version": "0.2.0",
"description": "Utility to convert MD or HTML text into VanJS code",
"type": "module",
"files": [
"dist/converter.js",
"dist/converter.d.ts"
],
"main": "dist/converter.js",
"browser": "dist/converter.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanjs-org/converter.git"
},
"keywords": [
"VanJS",
"UI",
"UI Framework",
"Components",
"Minimalist",
"Grab-n-go",
"Lightweight",
"Component",
"Library"
],
"author": "Tao Xin",
"license": "MIT",
"bugs": {
"url": "https://github.com/vanjs-org/converter/issues"
},
"homepage": "https://vanjs.org/converter-lib",
"dependencies": {
"html-dom-parser": "^4.0.0",
"marked": "^9.0.0"
},
"devDependencies": {
"@types/domhandler": "^2.4.2",
"@types/marked": "^5.0.1",
"ava": "^5.3.1",
"typescript": "^5.1.6"
}
}