-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1011 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1011 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@hotcrm/analytics",
"version": "1.0.0",
"type": "module",
"description": "Analytics module - Reports, Dashboards, KPIs, Metrics, and Business Intelligence",
"license": "MIT",
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "objectstack dev",
"start": "objectstack serve",
"build": "tsc && objectstack compile",
"typecheck": "tsc --noEmit",
"test": "objectstack test"
},
"keywords": [
"analytics",
"reports",
"dashboards",
"kpi",
"bi"
],
"author": "HotCRM Team",
"dependencies": {
"@hotcrm/ai": "workspace:*",
"@objectstack/spec": "^3.0.11",
"zod": "^4.3.6"
},
"devDependencies": {
"@objectstack/cli": "^3.0.11",
"typescript": "^5.9.3"
}
}