-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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": "jaamd",
"version": "0.1.15",
"description": "Just Another Astro Markdown",
"type": "module",
"license": "MIT",
"author": "Kasui92 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lancher-dev/jaamd"
},
"keywords": [
"astro",
"astro-component",
"astro-integration",
"withastro",
"markdown",
"remark"
],
"exports": {
".": "./index.ts",
"./components": "./src/components/MarkdownContent.astro",
"./client": "./src/scripts/enhancements.ts",
"./default": "./src/styles/variables.css",
"./default.css": "./src/styles/variables.css",
"./styles": "./src/styles/markdown.css",
"./styles.css": "./src/styles/markdown.css"
},
"files": [
"index.ts",
"src",
"README.md"
],
"peerDependencies": {
"astro": ">=4.0.0"
},
"dependencies": {
"remark-directive": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"astro": "^5.0.0",
"typescript": "^5.0.0",
"unified": "^11.0.0"
}
}