-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.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
{
"name": "@libis/primo-shared-state",
"version": "2026.6.1",
"description": "Shared state models and services for Primo module federation",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "echo \"No tests configured\" && exit 0",
"index-state": "ts-node --project .claude/tools/tsconfig.json .claude/tools/index-primo-state.ts"
},
"keywords": [
"primo",
"module-federation",
"ngrx",
"state-management",
"angular"
],
"author": "KULeuven/LIBIS",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@ngrx/entity": "^19.0.0",
"@ngrx/store": "^19.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@angular/common": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/platform-browser": "^19.1.3",
"@ngrx/entity": "^19.2.1",
"@ngrx/store": "^19.0.0",
"rxjs": "^7.8.0",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/libis/primo-shared-state.git"
},
"bugs": {
"url": "https://github.com/libis/primo-shared-state/issues"
},
"homepage": "https://github.com/libis/primo-shared-state#readme"
}