@wiresphere/devkit 0.2.0 → 1.0.0

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 CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@wiresphere/devkit",
3
- "version": "0.2.0",
4
- "description": "Build-time toolchain BOM + shared dev configs for ws-admin module workspaces. Installs the Angular CLI, builders, ng-packagr, TypeScript, Module Federation plugin, plus prettier/husky/pretty-quick. Ships a canonical prettier.config.js, tsconfig.base.json, and ws-pre-commit hook bin so workspaces consume them by reference and stay in sync with the host. Pairs with @wiresphere/ws-shared (runtime BOM + share map).",
3
+ "version": "1.0.0",
4
+ "nvm": "22.21.1",
5
+ "description": "Build-time toolchain BOM + shared dev configs for ws-admin module workspaces. Declares the Angular CLI, builders, ng-packagr, TypeScript and the native-federation plugin as direct dependencies so they install at the consumer's node_modules top-level (hoisted) without relying on npm's auto-install-peers behavior. Ships a canonical prettier.config.js, tsconfig.base.json, and ws-pre-commit hook bin. Pairs with @wiresphere/shared (runtime BOM).",
5
6
  "license": "Artistic-2.0",
6
7
  "publishConfig": {
7
8
  "access": "public"
@@ -14,15 +15,20 @@
14
15
  "prettier.config.js",
15
16
  "tsconfig.base.json"
16
17
  ],
18
+ "engines": {
19
+ "node": ">=22.0.0",
20
+ "npm": ">=10.0.0"
21
+ },
17
22
  "dependencies": {
18
- "@angular-architects/module-federation": "^12.5.3",
19
- "@angular-devkit/build-angular": "12.2.0",
20
- "@angular/cli": "12.2.0",
21
- "@angular/compiler-cli": "12.2.0",
22
- "husky": "^4.2.5",
23
- "ng-packagr": "12.1.1",
24
- "prettier": "2.5.1",
25
- "pretty-quick": "3.0.2",
26
- "typescript": "~4.3.5"
23
+ "@angular-architects/native-federation": "^20.0.0",
24
+ "@angular-devkit/build-angular": "20.3.26",
25
+ "@angular/build": "20.3.26",
26
+ "@angular/cli": "20.3.26",
27
+ "@angular/compiler-cli": "20.3.21",
28
+ "husky": "^9.0.0",
29
+ "ng-packagr": "^20.3.0",
30
+ "prettier": "^3.0.0",
31
+ "pretty-quick": "^4.0.0",
32
+ "typescript": "~5.8.0"
27
33
  }
28
34
  }
@@ -1,7 +1,7 @@
1
1
  // Canonical prettier config for ws-admin modules + host.
2
2
  //
3
3
  // Consumers reference this via package.json:
4
- // "prettier": "@wiresphere/ws-devkit/prettier.config.js"
4
+ // "prettier": "@wiresphere/devkit/prettier.config.js"
5
5
  //
6
6
  // Override locally by switching to a .prettierrc.js that imports and spreads
7
7
  // this object. Prefer overriding individual options over forking the whole
@@ -8,14 +8,16 @@
8
8
  "noFallthroughCasesInSwitch": true,
9
9
  "sourceMap": true,
10
10
  "declaration": false,
11
- "downlevelIteration": true,
12
11
  "experimentalDecorators": true,
13
- "moduleResolution": "node",
12
+ "moduleResolution": "bundler",
14
13
  "importHelpers": true,
15
- "target": "es2017",
16
- "module": "es2020",
14
+ "allowSyntheticDefaultImports": true,
15
+ "esModuleInterop": true,
16
+ "useDefineForClassFields": false,
17
+ "target": "es2022",
18
+ "module": "es2022",
17
19
  "lib": [
18
- "es2018",
20
+ "es2022",
19
21
  "dom"
20
22
  ]
21
23
  },