-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "astro-decap-cms-oauth",
"version": "0.5.1",
"description": "Add Decap CMS’s admin dashboard and a custom OAuth backend to your Astro project",
"keywords": [
"astro-integration",
"astro-component",
"cms",
"decap-cms",
"oauth"
],
"author": "Doruk Gezici",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dorukgezici/astro-decap-cms-oauth.git"
},
"bugs": "https://github.com/dorukgezici/astro-decap-cms-oauth/issues",
"homepage": "https://github.com/dorukgezici/astro-decap-cms-oauth",
"type": "module",
"files": [
"dist",
"src",
"README.md"
],
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/astro-decap-cms-oauth.d.ts",
"exports": {
".": {
"types": "./dist/astro-decap-cms-oauth.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./src/oauth/callback.ts": "./src/oauth/callback.ts",
"./src/oauth/index.ts": "./src/oauth/index.ts",
"./src/admin.astro": "./src/admin.astro"
},
"scripts": {
"dev": "vite build --watch",
"build": "pnpm run sync && tsc && vite build",
"prepublishOnly": "pnpm run build",
"sync": "pnpm astro sync"
},
"devDependencies": {
"@types/node": "^22.10.2",
"astro": "^5.0.5",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"astro": "^5.0.0"
}
}