-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "@junctionjs/debug",
"version": "2.0.0",
"description": "In-page debug panel for Junction — real-time event flow, consent state, destination status",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist", "README.md"],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --sourcemap --target es2022 --no-config --external @junctionjs/core",
"dev": "tsup src/index.ts --format esm --dts --watch --no-config --external @junctionjs/core",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@junctionjs/core": "^0.3.0"
},
"devDependencies": {
"@junctionjs/core": "*",
"tsup": "^8.0.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tyssejc/junction.git",
"directory": "packages/debug"
},
"keywords": ["analytics", "debug", "devtools", "event-collection", "junction"]
}