-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 947 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
{
"name": "marksmithjs",
"version": "1.1.0",
"description": "A library to convert markdown to HTML.",
"keywords": [
"markdown",
"html",
"markdown-to-html",
"markdown-parser",
"html-converter",
"text-processing",
"document-conversion"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shobhit-Nagpal/marksmith.git"
},
"author": "shobhit-nagpal",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shobhit-Nagpal/marksmith/issues"
},
"homepage": "https://github.com/Shobhit-Nagpal/marksmith#readme"
}