-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.92 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "auralogger-cli",
"version": "1.1.6",
"description": "Real-time logging and observability SDK and CLI for streaming, storing, searching, and filtering application logs—beautifully visualized and accessible from anywhere in the world across terminal, web, and any screen.",
"keywords": [
"auralogger",
"auralogger-cli",
"logger",
"logs",
"logging",
"logging-cli",
"cli",
"typescript",
"nextjs",
"next.js",
"vite",
"websocket",
"real-time",
"remote-logging",
"browser-logging",
"structured-logging",
"observability",
"devtools",
"debugging",
"agents",
"agentic-logger"
],
"homepage": "https://auralogger.com",
"bugs": {
"url": "https://github.com/Beever-Labs/auralogger-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beever-Labs/auralogger-node.git"
},
"license": "ISC",
"author": {
"name": "Bhanu Vardhan Reddy Nanavala",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/index.d.ts",
"default": "./dist/index.browser.js"
},
"node": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./server": {
"browser": {
"types": "./dist/server.browser.d.ts",
"default": "./dist/server.browser.js"
},
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./init": {
"types": "./dist/init.d.ts",
"default": "./dist/init.js"
},
"./server-check": {
"types": "./dist/server-check.d.ts",
"default": "./dist/server-check.js"
},
"./client-check": {
"types": "./dist/client-check.d.ts",
"default": "./dist/client-check.js"
}
},
"bin": {
"auralogger": "dist/cli/bin/auralogger.js"
},
"files": [
"dist",
"readme.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"bundle:test-client": "npx --yes esbuild dist/client.js --bundle --format=esm --platform=browser --outfile=tests/auralogger-client.browser.mjs",
"prepare": "npm run build",
"test": "npm run build && node dist/cli/bin/auralogger.js test-serverlog",
"test:local-harness": "node tests/local-server.js"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^17.4.2",
"http-proxy-agent": "^9.0.0",
"https-proxy-agent": "^9.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20"
}
}