-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 861 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 861 Bytes
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": "markdsl",
"version": "0.0.4",
"type": "module",
"license": "MIT",
"author": "Evolving Programs",
"repository": {
"type": "git",
"url": "git+https://github.com/EvolvingPrograms/markdsl.git"
},
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./*": "./src/*/index.ts"
},
"scripts": {
"typecheck": "tsc -p .",
"test": "bun test"
},
"files": [
"src/",
"patches/",
"fonts/"
],
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.1"
},
"peerDependencies": {
"typescript": "^5",
"pandoc-wasm": "^1.0.1"
},
"peerDependenciesMeta": {
"pandoc-wasm": {
"optional": true
}
},
"dependencies": {
"docx": "^9.6.1",
"jszip": "^3.10.1"
}
}