-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 893 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 893 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
29
{
"name": "@objectos/analytics",
"version": "0.1.0",
"type": "module",
"license": "AGPL-3.0",
"description": "Analytics and reporting engine for ObjectOS — aggregation pipelines, dashboards, scheduled reports",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean && tsc --emitDeclarationOnly --declaration",
"test": "jest --forceExit --passWithNoTests",
"test:coverage": "jest --coverage --forceExit --passWithNoTests",
"lint": "eslint src/",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@objectstack/runtime": "^3.0.9",
"@objectstack/spec": "3.0.9"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.9",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}