-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.72 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.72 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
{
"name": "@opral/markdown-wc",
"type": "module",
"version": "0.8.1",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"README.md"
],
"exports": {
".": "./dist/index.js",
"./tiptap": "./dist/tiptap/index.js",
"./html": "./dist/html/index.js",
"./default.css": "./src/default.css",
"./dist/markdown-wc-embed.js": "./dist/markdown-wc-embed.js"
},
"scripts": {
"build": "tsc --build && rolldown -c",
"dev": "tsc --watch",
"test": "tsc --noEmit && vitest run src/",
"typecheck": "tsc --noEmit",
"test:watch": "vitest src/",
"format": "prettier ./src --write",
"clean": "rm -rf ./dist ./node_modules"
},
"dependencies": {
"mermaid": "^11.12.1",
"rehype-autolink-headings": "7.1.0",
"rehype-highlight": "7.0.2",
"rehype-parse": "9.0.1",
"rehype-raw": "7.0.0",
"rehype-remark": "10.0.1",
"rehype-sanitize": "6.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "5.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@lit/task": "^1.0.3",
"@tiptap/core": "^3.10.7",
"@tiptap/pm": "^3.10.7",
"ajv": "^8.12.0",
"jsdom": "^27.4.0",
"json-schema-to-ts": "^3.1.0",
"lit": "^3.3.1",
"prettier": "^3.6.2",
"rolldown": "1.0.0-beta.50",
"typescript": "5.9.3",
"vitest": "^4.0.9"
},
"peerDependencies": {
"@tiptap/core": "^3.0.0"
},
"peerDependenciesMeta": {
"@tiptap/core": {
"optional": true
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opral/markdown-wc"
}
}