-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "marceo",
"version": "0.8.1",
"description": "Converts Markdown to HTML, allowing you to create fully customized and structured HTML documents.",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"types": "dist/index.d.ts",
"scripts": {
"testbuild": "node tests/runTest.mjs",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kruceo/marceo.git"
},
"keywords": [
"markdown",
"html",
"parser"
],
"author": "kruceo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kruceo/marceo/issues"
},
"homepage": "https://github.com/Kruceo/marceo#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.5",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}