-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.71 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@ogs-gmbh/markdown",
"version": "1.1.5",
"description": "A lightweight and extensible Markdown library for transforming and building Markdown with a deterministic and specification-oriented approach.",
"keywords": [
"markdown",
"markdown-renderer",
"md",
"npm",
"javascript",
"typescript",
"parser",
"renderer",
"text-processing",
"content-processing",
"commonmark",
"lightweight",
"extensible"
],
"homepage": "ogs-gmbh.github.io/markdown",
"bugs": "https://github.com/OGS-GmbH/markdown/issues",
"license": "MIT",
"author": "OGS GmbH",
"contributors": [
{
"name": "Simon Kovtyk",
"email": "simon@kovtyk.com",
"url": "https://simonkov.dev"
}
],
"exports": {
".": {
"types": "./public-api.d.ts",
"default": "./public-api.mjs"
}
},
"main": "./public-api.mjs",
"types": "./public-api.d.ts",
"repository": "github:OGS-GmbH/markdown",
"type": "module",
"scripts": {
"ci:build:main:production": "node .esbuild/build.mjs",
"ci:docs:extract:typedoc": "typedoc",
"ci:docs:main:vitepress": "bash ./.vitepress/scripts/pre-vitepress.sh && vitepress build .vitepress",
"ci:pr:commitlint:main:commitlint": "commitlint",
"ci:pr:lint:main:eslint": "eslint .",
"commit": "commit",
"prepare": "husky",
"vitepress": "bash ./.vitepress/scripts/pre-vitepress.sh && vitepress dev .vitepress",
"vitepress:preview": "vitepress preview .vitepress"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@commitlint/prompt-cli": "^20.4.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@ogs-gmbh/linter": "^2.0.0",
"@ogs-gmbh/vitepress-plugin-sidebar": "^1.0.3",
"@ogs-gmbh/vitepress-theme": "^1.1.0",
"@stylistic/eslint-plugin": "^5.7.1",
"typescript-eslint": "^8.54.0",
"npm-package-json-lint": "^9.1.0",
"@types/node": "^25.2.0",
"esbuild": "^0.27.2",
"esbuild-plugin-d.ts": "^1.3.1",
"esbuild-plugin-file-copy": "2.0.0-next.0",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"esbuild-plugin-package-json": "^2.0.0",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.5.0",
"eslint-plugin-unicorn": "^56.0.1",
"fast-glob": "^3.3.3",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"sass-embedded": "^1.97.3",
"typedoc": "^0.28.16",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitepress-plugin-group-icons": "^1.7.1"
},
"sideEffects": false,
"publishConfig": {
"directory": "dist/main"
}
}