-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 806 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 806 Bytes
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
{
"name": "ga4-schema-overseer",
"description": "A lightweight GA4 request validator — zero runtime dependencies",
"keywords": [
"GA4",
"analytics",
"schema",
"validation",
"bun"
],
"author": "Your Name",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"build": "tsup",
"test": "bun test"
},
"devDependencies": {
"@swc/core": "^1.15.11",
"@types/bun": "latest",
"tsup": "^8.5.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {},
"trustedDependencies": [
"@swc/core"
]
}