-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "astro-netlify-cms",
"version": "0.5.4",
"description": "Add Netlify CMS’s admin dashboard to your Astro project",
"repository": "delucis/astro-netlify-cms",
"homepage": "https://github.com/delucis/astro-netlify-cms",
"author": "delucis",
"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",
"test:smoke": "tsc && cd demo && npm ci && npm run build",
"test": "npm run test:smoke"
},
"keywords": [
"astro-component",
"cms",
"astro",
"netlify-cms"
],
"dependencies": {
"@types/react": "^17.0.50",
"netlify-cms-app": "^2.15.66",
"netlify-cms-proxy-server": "^1.3.23",
"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"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"astro": "^1.5.2"
}
}