-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"name": "astro-posthog",
"version": "1.0.2",
"description": "Posthog integration for Astro",
"type": "module",
"keywords": [
"astro-integration",
"astro-component",
"posthog",
"analytics",
"tracking"
],
"contributors": [
{
"name": "Johannes Przymusinski",
"email": "johannes.przymusinski@jop-software.de",
"url": "https://jop-software.de"
}
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/astro-posthog.es.js",
"require": "./dist/astro-posthog.umd.js"
}
},
"main": "./dist/astro-posthog.umd.js",
"module": "./dist/astro-posthog.es.js",
"files": [
"dist"
],
"license": "GPL-3.0-or-later",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest run --reporter verbose",
"test:coverage": "vitest run --coverage",
"build:watch": "vite build --watch",
"dev": "vite",
"prettier:check": "prettier --check src",
"prettier:write": "prettier --write src"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@vitest/coverage-v8": "^1.6.1",
"astro": "^5.11.0",
"prettier": "^2.7.1",
"typescript": "^5.8.3",
"vite": "^7.0.2",
"vitest": "^1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jop-software/astro-posthog"
},
"dependencies": {
"posthog-js": "^1.256.2"
},
"packageManager": "pnpm@10.12.4",
"test": "vitest run"
}