-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 779 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 779 Bytes
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
{
"name": "realtime-analytics-engine",
"version": "1.0.0",
"description": "Real-time analytics data pipeline with time-window aggregation, alerting, and dashboards",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"example": "ts-node examples/webAnalytics.ts",
"clean": "rm -rf dist",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": ["analytics", "realtime", "pipeline", "time-series", "aggregation"],
"author": "",
"license": "MIT",
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"typescript": "^5.5.4",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"ts-node": "^10.9.1",
"vitest": "^2.0.4"
}
}