@vipin733/nodescope 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +412 -0
- package/dist/chunk-6H665NNC.js +198 -0
- package/dist/chunk-6KBKW63X.js +145 -0
- package/dist/chunk-BOBKU5LG.js +163 -0
- package/dist/chunk-OF6NKXP5.js +44 -0
- package/dist/chunk-V5BR4MSS.js +195 -0
- package/dist/index.cjs +2926 -0
- package/dist/index.d.cts +928 -0
- package/dist/index.d.ts +928 -0
- package/dist/index.js +2092 -0
- package/dist/memory-5GF7O2HJ.js +7 -0
- package/dist/mysql-KNBA3N7P.js +7 -0
- package/dist/postgresql-XD7N5SFI.js +7 -0
- package/dist/sqlite-DMOIPBIO.js +7 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vipin733/nodescope",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A Laravel Telescope-inspired debugging and monitoring package for Node.js and Bun applications",
|
|
6
|
+
"author": "Vipin",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.mjs",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"require": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external better-sqlite3 --external pg --external mysql2 --external express --external hono --external fastify",
|
|
25
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external better-sqlite3 --external pg --external mysql2 --external express --external hono --external fastify",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"test:coverage": "vitest run --coverage",
|
|
30
|
+
"lint": "eslint src --ext .ts",
|
|
31
|
+
"clean": "rm -rf dist"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/yourusername/nodescope.git",
|
|
36
|
+
"directory": "packages/core"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/yourusername/nodescope/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/yourusername/nodescope#readme",
|
|
42
|
+
"keywords": [
|
|
43
|
+
"debugging",
|
|
44
|
+
"monitoring",
|
|
45
|
+
"telescope",
|
|
46
|
+
"devtools",
|
|
47
|
+
"nodejs",
|
|
48
|
+
"node",
|
|
49
|
+
"bun",
|
|
50
|
+
"express",
|
|
51
|
+
"hono",
|
|
52
|
+
"fastify",
|
|
53
|
+
"observability",
|
|
54
|
+
"developer-tools",
|
|
55
|
+
"debug",
|
|
56
|
+
"logging",
|
|
57
|
+
"database",
|
|
58
|
+
"queries",
|
|
59
|
+
"requests",
|
|
60
|
+
"middleware",
|
|
61
|
+
"websocket",
|
|
62
|
+
"real-time"
|
|
63
|
+
],
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"nanoid": "^5.0.0",
|
|
66
|
+
"ws": "^8.16.0"
|
|
67
|
+
},
|
|
68
|
+
"optionalDependencies": {
|
|
69
|
+
"better-sqlite3": "^9.4.0",
|
|
70
|
+
"mysql2": "^3.9.0",
|
|
71
|
+
"pg": "^8.11.0"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/better-sqlite3": "^7.6.8",
|
|
75
|
+
"@types/express": "^4.17.21",
|
|
76
|
+
"@types/node": "^20.11.0",
|
|
77
|
+
"@types/pg": "^8.11.0",
|
|
78
|
+
"@types/supertest": "^6.0.3",
|
|
79
|
+
"@types/ws": "^8.5.10",
|
|
80
|
+
"@vitest/coverage-v8": "^1.2.0",
|
|
81
|
+
"express": "^4.18.2",
|
|
82
|
+
"fastify": "^4.26.0",
|
|
83
|
+
"hono": "^4.0.0",
|
|
84
|
+
"supertest": "^7.2.2",
|
|
85
|
+
"tsup": "^8.0.0",
|
|
86
|
+
"typescript": "^5.3.0",
|
|
87
|
+
"vitest": "^1.2.0"
|
|
88
|
+
},
|
|
89
|
+
"peerDependencies": {
|
|
90
|
+
"express": ">=4.0.0",
|
|
91
|
+
"fastify": ">=4.0.0",
|
|
92
|
+
"hono": ">=4.0.0"
|
|
93
|
+
},
|
|
94
|
+
"peerDependenciesMeta": {
|
|
95
|
+
"express": {
|
|
96
|
+
"optional": true
|
|
97
|
+
},
|
|
98
|
+
"hono": {
|
|
99
|
+
"optional": true
|
|
100
|
+
},
|
|
101
|
+
"fastify": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"engines": {
|
|
106
|
+
"node": ">=18.0.0"
|
|
107
|
+
}
|
|
108
|
+
}
|