-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "docusaurus-plugin-image-zoom",
"version": "2.0.0",
"private": false,
"description": "Docusaurus plugin to utilize https://www.npmjs.com/package/medium-zoom in your projects easily!",
"homepage": "https://github.com/gabrielcsapo/docusaurus-plugin-image-zoom#readme",
"bugs": {
"url": "https://github.com/gabrielcsapo/docusaurus-plugin-image-zoom/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/docusaurus-plugin-image-zoom.git"
},
"license": "MIT",
"author": "Gabriel J. Csapo <[email protected]>",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo 'none for now'"
},
"dependencies": {
"medium-zoom": "^1.0.8",
"validate-peer-dependencies": "^2.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.0.0",
"@docusaurus/theme-classic": "^3.0.0",
"@docusaurus/tsconfig": "^3.0.0",
"@docusaurus/types": "^3.0.0",
"@release-it-plugins/lerna-changelog": "^6.0.0",
"@types/node": "^20.8.10",
"@types/react": "^18.2.34",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@docusaurus/theme-classic": ">=3.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "18.18.2"
}
}