-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "posthog",
"version": "1.4.0",
"description": "A managed component for PostHog analytics",
"main": "dist/index.js",
"homepage": "https://github.com/mountainash/posthog-managed-component#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mountainash/posthog-managed-component.git"
},
"bugs": {
"url": "https://github.com/mountainash/posthog-managed-component/issues"
},
"scripts": {
"dev": "bun build ./src/index.ts --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"bundle": "bun run ./bundle.ts",
"build": " bun run lint && bun run typecheck && bun run test && bun run bundle",
"typecheck": "tsc --noEmit",
"test": "vitest run --globals",
"test:dev": "vitest --globals",
"release": "bun run build && bunx managed-component-to-cloudflare-worker ./dist/index.js zaraz-posthog"
},
"keywords": [
"webcm",
"managed-components",
"posthog",
"analytics",
"cloudflare",
"zaraz",
"workers",
"3rd-party-script"
],
"author": "mountainash",
"license": "Apache-2.0",
"dependencies": {
"ua-parser-js": "^1.0.39"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@managed-components/types": "^1.3.15",
"@types/bun": "^1.1.10",
"@types/eslint": "^9.6.1",
"@types/ua-parser-js": "^0.7.39",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1-alpha.0",
"vitest": "^2.1.1"
},
"engines": {
"bun": ">=1.1.30"
}
}