-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "astro-sveltia-cms",
"version": "0.1.1",
"description": "Add Sveltia CMS admin dashboard and a custom OAuth backend to your Astro project",
"keywords": [
"astro-integration",
"astro-component",
"cms",
"sveltia-cms",
"sveltia",
"oauth"
],
"author": "Giulio Zanchetta",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/majesticostudio/astro-sveltia-cms.git"
},
"bugs": "https://github.com/majesticostudio/astro-sveltia-cms/issues",
"homepage": "https://github.com/majesticostudio/astro-sveltia-cms",
"type": "module",
"files": [
"dist",
"src",
"README.md"
],
"main": "./dist/astro-sveltia-cms.umd.cjs",
"module": "./dist/astro-sveltia-cms.js",
"types": "./dist/astro-sveltia-cms.d.ts",
"exports": {
".": {
"types": "./dist/astro-sveltia-cms.d.ts",
"import": "./dist/astro-sveltia-cms.js",
"require": "./dist/astro-sveltia-cms.umd.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": "tsc && vite build",
"prepublishOnly": "pnpm run build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.10.4",
"tiny-json-http": "^7.5.1",
"@types/tiny-json-http": "^7.3.4",
"astro": "^4.0.3",
"typescript": "^5.3.3",
"vite": "^5.0.6",
"vite-plugin-dts": "^3.6.4"
},
"peerDependencies": {
"astro": "^2.0.0 || ^3.0.0"
}
}