-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
125 lines (125 loc) · 3.16 KB
/
package.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@dimerapp/markdown",
"version": "8.0.1",
"description": "Opinionated markdown processor built on top of remark and mdast",
"main": "build/index.js",
"type": "module",
"files": [
"build/src",
"build/index.d.ts",
"build/index.js"
],
"engines": {
"node": ">=18.16.0"
},
"exports": {
".": "./build/index.js",
"./utils": "./build/src/utils.js",
"./macros": "./build/src/macros/index.js",
"./types": "./build/src/types.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"clean": "del-cli build",
"typecheck": "tsc --noEmit",
"precompile": "npm run lint && npm run clean",
"compile": "tsc",
"build": "npm run compile",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels .github/labels.json dimerapp/markdown"
},
"keywords": [
"markdown",
"remark",
"ast",
"dimerapp"
],
"author": "virk,dimerapp",
"license": "MIT",
"devDependencies": {
"@adonisjs/eslint-config": "^1.2.1",
"@adonisjs/prettier-config": "^1.2.1",
"@adonisjs/tsconfig": "^1.2.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@japa/assert": "^2.1.0",
"@japa/runner": "^3.1.1",
"@swc/core": "^1.3.101",
"@types/node": "^20.10.5",
"c8": "^8.0.1",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"github-label-sync": "^2.0.0",
"husky": "^8.0.3",
"np": "^9.2.0",
"prettier": "^3.1.1",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"front-matter": "^4.0.2",
"hast-util-to-html": "^8.0.4",
"hast-util-to-string": "^2.0.0",
"hastscript": "^8.0.0",
"mdast-util-to-hast": "^12.3.0",
"mdast-util-toc": "^6.1.1",
"parseurl": "^1.3.3",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.4",
"remark-autolink-headings": "^7.0.1",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-slug": "^7.0.1",
"remark-squeeze-paragraphs": "^5.0.1",
"remark-stringify": "^10.0.3",
"unified": "^10.1.2",
"unist-util-visit": "^5.0.0",
"vfile-message": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimerapp/markdown.git"
},
"bugs": {
"url": "https://github.com/dimerapp/markdown/issues"
},
"homepage": "https://github.com/dimerapp/markdown#readme",
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"bin/**"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config"
}