-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "astro-decap-plugin",
"version": "0.0.1",
"description": "Add Decap CMS’ admin dashboard to your Astro project wth ease.",
"repository": "Wesley-Ryan/astro-decap-plugin",
"homepage": "https://github.com/Wesley-Ryan/astro-decap-plugin",
"author": "Wesley-Ryan",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js",
"./cms": "./dist/cms.js",
"./identity-widget": "./dist/identity-widget.js",
"./vite-plugin-admin-dashboard": "./dist/vite-plugin-admin-dashboard.js",
"./admin-dashboard.astro": "./admin-dashboard.astro"
},
"types": "./dist/index.d.ts",
"scripts": {
"prepack": "tsc"
},
"keywords": [
"astro",
"decap-cms"
],
"dependencies": {
"@types/react": "^17.0.50",
"decap-cms-app": "^3.0.12",
"decap-server": "^3.0.1",
"netlify-identity-widget": "^1.9.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"astro": "^1.0.0 || ^2.0.0-beta || ^3.0.0-beta || ^4.0.0-beta"
},
"devDependencies": {
"astro": "^4.2.1"
}
}