-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.47 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
{
"name": "consensus-cli",
"version": "0.1.6",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/integrate-your-mind/consensus-cli.git"
},
"bugs": {
"url": "https://github.com/integrate-your-mind/consensus-cli/issues"
},
"homepage": "https://github.com/integrate-your-mind/consensus-cli#readme",
"type": "module",
"main": "dist/server.js",
"bin": {
"consensus": "dist/cli.js",
"consensus-cli": "dist/cli.js"
},
"files": [
"dist",
"public",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"scripts": {
"dev": "node dev/dev.mjs",
"dev:server": "tsx watch src/server.ts",
"dev:client": "cd public && vite",
"build": "tsc && npm run build:client",
"build:client": "cd public && vite build",
"start": "node dist/server.js",
"scan": "node dist/scan.js",
"tail": "node dist/tail.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "node --test --import tsx tests/unit/**/*.test.ts",
"test:integration": "node --test --import tsx tests/integration/**/*.test.ts",
"test:watch": "node --test --watch --import tsx tests/unit/**/*.test.ts tests/integration/**/*.test.ts",
"test:ui": "playwright test",
"test:ui:watch": "playwright test --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@effect/opentelemetry": "^0.61.0",
"@effect/platform": "^0.94.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.211.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.211.0",
"@opentelemetry/resources": "^2.5.0",
"@opentelemetry/sdk-logs": "^0.211.0",
"@opentelemetry/sdk-metrics": "^2.5.0",
"@opentelemetry/sdk-trace-base": "^2.5.0",
"@opentelemetry/sdk-trace-node": "^2.5.0",
"@opentelemetry/semantic-conventions": "^1.39.0",
"chokidar": "^5.0.0",
"effect": "^3.19.15",
"eventsource-parser": "^3.0.6",
"express": "^4.19.2",
"pidusage": "^3.0.2",
"ps-list": "^8.1.1",
"ws": "^8.17.0"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.3.0",
"tsx": "^4.15.7",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"engines": {
"node": ">=20"
}
}