-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.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
{
"name": "remark-embed",
"version": "1.3.1",
"description": "A `remark` plugin for embedding remote / local Markdown or code snippets inside Markdown.",
"type": "module",
"source": "./index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"index.ts"
],
"scripts": {
"dev": "pnpm tsc -w",
"build": "pnpm tsc",
"release": "semantic-release"
},
"dependencies": {
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"ultrafetch": "^0.3.0",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@julian_cataldo/astro-configs": "^0.18.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@types/eslint": "8.4.6",
"@types/mdast": "^3.0.10",
"@types/node": "18.7.18",
"@types/prettier": "2.7.0",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"eslint": "8.23.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tsdoc": "0.2.17",
"prettier": "2.7.1",
"semantic-release": "^19.0.5",
"typescript": "4.8.3"
},
"engines": {
"node": ">=17"
},
"homepage": "https://github.com/JulianCataldo/remark-embed",
"repository": {
"type": "git",
"url": "https://github.com/JulianCataldo/remark-embed"
},
"bugs": {
"url": "https://github.com/JulianCataldo/remark-embed/issues",
"email": "contact@juliancataldo.com"
},
"author": "Julian Cataldo",
"license": "ISC",
"keywords": [
"remark",
"embed",
"remote",
"include",
"markdown",
"local",
"monorepo",
"unified",
"pipeline",
"astro",
"plugin",
"import",
"code",
"snippets",
"range",
"extract",
"fetch",
"gatsby",
"gridsome",
"markdown"
],
"publishConfig": {
"access": "public"
}
}