-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "svelte-markdoc-preprocess",
"version": "2.1.0",
"description": "A Svelte preprocessor that allows you to use Markdoc.",
"type": "commonjs",
"keywords": [
"svelte",
"preprocessor",
"markdoc",
"markdown",
"md"
],
"scripts": {
"test": "node --test",
"check": "publint && tsc --noEmit",
"lint": "prettier --check .",
"format": "prettier --write .",
"dev": "tsc --watch",
"build": "tsc"
},
"source": "src/module.ts",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"author": "Torsten Dittmann",
"license": "MIT",
"dependencies": {
"@markdoc/markdoc": "^0.4.0",
"html-escaper": "^3.0.3",
"js-yaml": "^4.1.0",
"lovely-logs": "^1.2.0",
"svelte": "^4.0.0",
"typescript": "^5.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TorstenDittmann/svelte-markdoc-preprocess.git"
},
"homepage": "https://svelte-markdoc-preprocess.pages.dev",
"devDependencies": {
"@types/html-escaper": "^3.0.2",
"@types/js-yaml": "^4.0.8",
"@types/node": "^20.10.7",
"fast-glob": "^3.3.2",
"prettier": "*",
"publint": "^0.3.0"
}
}