-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "sublinks-markdown",
"version": "0.1.4",
"description": "A markdown parser with rules for frontends of sublinks. Used to easily add markdown support compatible with the standard sublinks frontend.",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Ategon",
"license": "MIT",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "tsup",
"test": "vitest"
},
"dependencies": {
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-abbr": "^1.4.1",
"remark-captions": "^2.2.3",
"remark-emoji": "^4.0.1",
"remark-heading-id": "^1.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.10.4",
"@types/remark-abbr": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}