@seliseblocks/blocks-angular-localization 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@seliseblocks/blocks-angular-localization",
3
+ "version": "0.0.1",
4
+ "description": "Angular translation SDK powered by SELISE UILM API with signal-based reactivity, two-tier caching (in-memory + IndexedDB), per-module lazy loading, and route-level scoping.",
5
+ "license": "MIT",
6
+ "scripts": {
7
+ "build": "ng-packagr -p ng-package.json",
8
+ "build:prod": "ng-packagr -p ng-package.json -c tsconfig.lib.prod.json",
9
+ "test": "vitest run --config vite.config.mts",
10
+ "test:watch": "vitest --config vite.config.mts",
11
+ "test:coverage": "vitest run --config vite.config.mts --coverage",
12
+ "lint": "eslint src/",
13
+ "lint:fix": "eslint src/ --fix",
14
+ "format": "prettier --write \"src/**/*.ts\"",
15
+ "format:check": "prettier --check \"src/**/*.ts\"",
16
+ "prepublishOnly": "npm run build:prod"
17
+ },
18
+ "peerDependencies": {
19
+ "@angular/common": ">=17.0.0",
20
+ "@angular/core": ">=17.0.0",
21
+ "rxjs": ">=7.0.0"
22
+ },
23
+ "devDependencies": {
24
+ "@analogjs/vite-plugin-angular": "^2.4.10",
25
+ "@analogjs/vitest-angular": "^2.4.10",
26
+ "@angular/build": "^20.3.24",
27
+ "@angular/common": "^20.3.19",
28
+ "@angular/compiler": "^20.3.19",
29
+ "@angular/compiler-cli": "^20.3.19",
30
+ "@angular/core": "^20.3.19",
31
+ "@angular/platform-browser": "^20.3.19",
32
+ "@angular/platform-browser-dynamic": "^20.3.19",
33
+ "@types/node": "^25.6.0",
34
+ "@vitest/coverage-v8": "^4.1.5",
35
+ "autoprefixer": "^10.5.0",
36
+ "eslint": "^9.0.0",
37
+ "eslint-plugin-simple-import-sort": "^13.0.0",
38
+ "jsdom": "^29.1.0",
39
+ "ng-packagr": "^20.3.2",
40
+ "prettier": "^3.0.0",
41
+ "rxjs": "^7.8.0",
42
+ "tslib": "^2.6.0",
43
+ "typescript": "^5.6.0",
44
+ "typescript-eslint": "^8.59.0",
45
+ "vite": "^6.0.0",
46
+ "vite-tsconfig-paths": "^5.0.0",
47
+ "vitest": "^4.1.5",
48
+ "zone.js": "^0.15.1"
49
+ },
50
+ "dependencies": {
51
+ "tslib": "^2.6.0"
52
+ },
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/SELISEdigitalplatforms/L0-anglar-uilm-sdk"
56
+ },
57
+ "homepage": "https://github.com/SELISEdigitalplatforms/L0-anglar-uilm-sdk#readme",
58
+ "bugs": {
59
+ "url": "https://github.com/SELISEdigitalplatforms/L0-anglar-uilm-sdk/issues"
60
+ },
61
+ "sideEffects": false,
62
+ "overrides": {
63
+ "@angular/build": {
64
+ "vitest": "$vitest"
65
+ }
66
+ }
67
+ }