-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@galactiks/astro-integration",
"version": "0.3.9",
"description": "Galactiks Astro integration",
"author": "thegalactiks",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/thegalactiks/explorer/issues",
"homepage": "https://www.galactiks.com",
"repository": {
"type": "git",
"url": "https://github.com/thegalactiks/explorer.git",
"directory": "packages/adapters/astro"
},
"main": "dist/index.js",
"scripts": {
"build": "run-s build:tsc build:copy-astro",
"build:tsc": "tsc -p ./tsconfig.json",
"build:copy-astro": "copyfiles -f src/components/*.astro dist/components"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./components/Head.astro": "./dist/components/Head.astro",
"./components/BaseLayout.astro": "./dist/components/BaseLayout.astro",
"./components/Plausible.astro": "./dist/components/Plausible.astro"
},
"files": [
"dist"
],
"keywords": [
"astro",
"astro-integration",
"astro-component",
"analytics",
"seo",
"galactiks",
"performance"
],
"dependencies": {
"@galactiks/config": "workspace:^",
"@galactiks/explorer": "workspace:^",
"date-fns": "3.5.0",
"debug": "4.3.4"
},
"peerDependencies": {
"@astrojs/partytown": "^2.0",
"@astrojs/react": "^3.0",
"@astrojs/rss": "~4.0",
"@galactiks/sitemap": "^0.1.3",
"astro": "^4.0",
"astro-robots-txt": "~1.0"
},
"devDependencies": {
"@astrojs/partytown": "2.0.4",
"@astrojs/react": "3.1.0",
"@astrojs/rss": "4.0.5",
"@galactiks/sitemap": "workspace:^",
"@types/debug": "4.1.12",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"astro": "4.5.5",
"astro-robots-txt": "1.0.0",
"copyfiles": "2.4.1",
"npm-run-all2": "6.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.2",
"vite": "5.1.6"
}
}