-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
61
62
63
64
65
{
"name": "dev-debug-panel",
"version": "1.0.3",
"description": "A draggable, resizable debug panel for logging and state inspection in web applications",
"license": "ISC",
"homepage": "https://github.com/rw3iss/dev-debug-panel#readme",
"bugs": {
"url": "https://github.com/rw3iss/dev-debug-panel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rw3iss/dev-debug-panel.git"
},
"author": {
"name": "Ryan Weiss",
"email": "rw3iss@gmail.com",
"url": "https://www.ryanweiss.net"
},
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.umd.js",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "node build.js && tsc --declaration --emitDeclarationOnly --outDir dist",
"dev": "node build.js --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "node tests/index.ts"
},
"keywords": [
"debug",
"logging",
"panel",
"development",
"typescript",
"vanilla-js"
],
"peerDependencies": {
"eventbusjs": "^0.2.0",
"jsondiffpatch": "^0.7.3"
},
"dependencies": {
"eventbusjs": "^0.2.0",
"fast-safe-stringify": "^2.1.1",
"jsondiffpatch": "^0.7.3"
},
"devDependencies": {
"esbuild": "^0.21.5",
"sass": "^1.93.2",
"typescript": "^5.0.0"
}
}