-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 766 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 766 Bytes
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
{
"name": "docusaurus-plugin-sentry",
"version": "2.1.0",
"description": "Sentry SDK plugin for Docusaurus",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Sergio Moreno",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"README.md",
"lib/"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/semoal/docusaurus-plugin-sentry.git"
},
"private": false,
"peerDependencies": {
"@docusaurus/core": ">=3",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@docusaurus/types": "^3.1.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}