-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.75 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@studiocms/github",
"version": "0.3.0",
"description": "Add GitHub OAuth Support to your StudioCMS project.",
"author": {
"name": "withstudiocms",
"url": "https://studiocms.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withstudiocms/studiocms.git",
"directory": "packages/@studiocms/github"
},
"contributors": [
"Adammatthiesen",
"jdtjenkins",
"dreyfus92",
"code.spirit"
],
"license": "MIT",
"keywords": [
"astro",
"astrocms",
"astrodb",
"astrostudio",
"astro-studio",
"astro-studiocms",
"cms",
"studiocms",
"plugin",
"studiocms-plugin"
],
"homepage": "https://studiocms.dev",
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsdown --config tsdown.config.ts --clean",
"dev": "tsdown --config tsdown.config.ts --no-clean",
"typecheck": "tspc -p tsconfig.tspc.json",
"effect-check": "pnpm effect-language-service diagnostics --project tsconfig.tspc.json",
"ci:effect-check": "pnpm effect-check --format github-actions",
"test": "vitest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"type": "module",
"dependencies": {
"astro-integration-kit": "catalog:",
"arctic": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"astro": "catalog:studiocms-peerlock",
"studiocms": "workspace:^",
"vite": "catalog:studiocms-peerlock"
},
"peerDependencies": {
"@withstudiocms/auth-kit": "workspace:^",
"@withstudiocms/effect": "workspace:^",
"@withstudiocms/kysely": "workspace:^",
"effect": "catalog:effect"
}
}