-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.73 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "markdown2typst",
"version": "0.1.4",
"description": "A comprehensive JavaScript library for converting Markdown to Typst code",
"type": "module",
"main": "./dist/markdown2typst.js",
"types": "./src/markdown2typst.ts",
"exports": {
".": {
"types": "./src/markdown2typst.ts",
"import": "./dist/markdown2typst.js",
"default": "./dist/markdown2typst.min.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"markdown",
"typst",
"converter",
"parser",
"markdown-to-typst",
"markdown-2-typst",
"markdown2typst",
"gfm",
"github-flavored-markdown",
"remark",
"unified",
"documentation"
],
"scripts": {
"build": "node build.js",
"build:dev": "node build.js --dev",
"typecheck": "tsc --noEmit",
"test": "node --test test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Mapaor/markdown2typst.git"
},
"bugs": {
"url": "https://github.com/Mapaor/markdown2typst/issues"
},
"homepage": "https://github.com/Mapaor/markdown2typst#readme",
"author": "Martí Pardo <pardo.marti@gmail.com>",
"license": "MIT",
"dependencies": {
"country-list": "^2.4.1",
"js-yaml": "^4.1.1",
"langs": "^2.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"tex2typst": "^0.5.5",
"unified": "^11.0.0"
},
"devDependencies": {
"@types/country-list": "^2.1.4",
"@types/js-yaml": "^4.0.9",
"@types/langs": "^2.0.5",
"@types/mdast": "^4.0.4",
"@types/node": "^25.0.8",
"esbuild": "^0.27.2",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}