generated from JoshuaKGoldberg/create-typescript-app
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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
{
"author": "John Reilly <johnny_reilly@hotmail.com> (https://blog.johnnyreilly.com)",
"description": "Cloudinary offers an image CDN which can improve performance of your site. This plugin allows Docusaurus to use Cloudinary to serve optimised images.",
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/hast": "^2.3.0",
"@types/node": "^18.11.17",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitest/coverage-istanbul": "^0.26.0",
"chalk": "^5.1.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-regexp": "^1.11.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-vitest": "^0.0.20",
"husky": ">=6",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": ">=10",
"markdownlint-cli": "^0.32.2",
"npm-package-json-lint": "^6.3.0",
"npm-package-json-lint-config-default": "^5.0.0",
"pnpm-deduplicate": "^0.4.0",
"prettier": "^2.7.1",
"release-it": "^15.5.1",
"typescript": "^4.8.4",
"unified": "^9.2.2",
"unist-util-visit": "^2.0.3",
"vitest": "^0.26.0",
"yargs": "^17.6.2"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cloudinary",
"docusaurus",
"markdown",
"transform",
"rehype",
"rehype-plugin"
],
"license": "MIT",
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"main": "./lib/index.js",
"name": "rehype-cloudinary-docusaurus",
"packageManager": "pnpm@7.18.2",
"peerDependencies": {
"unist-util-visit": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/johnnyreilly/rehype-cloudinary-docusaurus"
},
"scripts": {
"build": "tsc",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint:package": "npmPkgJsonLint .",
"lint:packages": "pnpm-deduplicate --list",
"prepare": "husky install",
"test": "vitest"
},
"type": "commonjs",
"version": "1.3.0"
}