-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "loglens",
"description": "A tool for viewing and filtering logs in a web browser UI",
"author": "spersico",
"license": "MIT",
"version": "0.0.13",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/spersico/logLens.git"
},
"bugs": {
"url": "https://github.com/spersico/logLens/issues"
},
"bin": {
"logLensPub": "cli/publisher.js",
"logLensSub": "cli/subscriber.js"
},
"scripts": {
"dev:client": "vite --port 9998",
"dev:server": "DEBUG=logLens:* npx nodemon cli/subscriber.js --open=false",
"test-util:publisher": "node testUtils/chattyServer.js 2>&1 | DEBUG=logLens:* ./cli/publisher.js",
"test-util:publisher:json": "node testUtils/chattyServer.js --contentType=json 2>&1 | DEBUG=logLens:* node ./cli/publisher.js --contentType=json",
"build": "tsc && vite build --outDir=cli/logLensSub-frontend",
"release": "npm version patch -m 'release %s' && npm run build && npm publish"
},
"main": "cli/subscriber.js",
"nodemonConfig": {
"watch": [
"./cli/**"
]
},
"files": [
"cli"
],
"dependencies": {
"@doeixd/create-virtualized-list-solid": "^1.3.0",
"@solid-primitives/websocket": "^1.2.2",
"debug": "^4.3.7",
"dexie": "^3.2.7",
"highlight.js": "^11.10.0",
"koa": "^2.15.3",
"koa-static": "^5.0.0",
"namor": "^3.0.1",
"open": "^10.1.0",
"solid-dexie": "^0.0.5",
"solid-js": "^1.9.3",
"split": "^1.0.1",
"ws": "^8.18.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/node": "^22.8.2",
"sass": "^1.80.4",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-solid": "^2.10.2"
}
}