orcas-angular 1.0.2 → 1.0.4

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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(npm run:*)",
5
+ "Bash(npm:*)"
6
+ ]
7
+ }
8
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "./node_modules/ng-packagr/ng-package.schema.json",
3
+ "lib": {
4
+ "entryFile": "index.ts"
5
+ },
6
+ "dest": "dist"
7
+ }
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "orcas-angular",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "A collection of reusable Angular utilities and services, with support for Tauri and Capacitor.",
5
- "main": "index.ts",
6
- "types": "index.ts",
7
5
  "keywords": [
8
6
  "angular",
9
7
  "tauri",
@@ -14,9 +12,16 @@
14
12
  ],
15
13
  "author": "Racso",
16
14
  "license": "MPL-2.0",
15
+ "scripts": {
16
+ "build": "ng-packagr -p ng-package.json"
17
+ },
18
+ "publishConfig": {
19
+ "directory": "dist"
20
+ },
17
21
  "peerDependencies": {
18
22
  "@angular/common": "^21.0.0",
19
23
  "@angular/core": "^21.0.0",
24
+ "@angular/router": "^21.0.0",
20
25
  "@angular/cdk": "^21.0.3",
21
26
  "rxjs": "~7.8.0"
22
27
  },
@@ -25,5 +30,11 @@
25
30
  "@tauri-apps/plugin-fs": "^2.0.0",
26
31
  "@capacitor/filesystem": "^6.0.0",
27
32
  "@capacitor/preferences": "^6.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@angular/compiler": "^21.0.0",
36
+ "@angular/compiler-cli": "^21.0.0",
37
+ "ng-packagr": "^21.0.0",
38
+ "typescript": "~5.9.0"
28
39
  }
29
40
  }
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "inlineSourceMap": true,
5
+ "inlineSources": true,
6
+ "declarationMap": true
7
+ },
8
+ "angularCompilerOptions": {
9
+ "compilationMode": "partial"
10
+ }
11
+ }