@cdk-construct/library 0.0.0 → 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.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -1,7 +1,24 @@
1
1
  # CDK Construct Library
2
2
 
3
- AWS CDK construct library scaffolded with projen, TypeScript 5.9.3, ESLint, GTS,
4
- Prettier, and ESM package metadata.
3
+ `@cdk-construct/library` is the foundation for paved-road AWS CDK constructs:
4
+ opinionated building blocks that make the common path easy while keeping
5
+ advanced configuration available through explicit escape hatches.
6
+
7
+ The library is built with projen, TypeScript 5.9.3, ESLint, GTS, Prettier, and
8
+ ESM package metadata.
9
+
10
+ ## Install
11
+
12
+ ```sh
13
+ npm install @cdk-construct/library
14
+ ```
15
+
16
+ ## Project Status
17
+
18
+ This initial package establishes the publishing, formatting, linting, and build
19
+ foundation for the construct library. The project goal is to provide constructs
20
+ with safe defaults, environment-aware cost controls, and opt-in overrides for
21
+ teams that need to step outside the paved path.
5
22
 
6
23
  ## Commands
7
24
 
package/package.json CHANGED
@@ -45,7 +45,7 @@
45
45
  "jest": "^30.2.0",
46
46
  "jest-junit": "^17",
47
47
  "prettier": "^3.8.1",
48
- "projen": "^0.99.70",
48
+ "projen": "0.99.71",
49
49
  "ts-jest": "^29.4.6",
50
50
  "ts-node": "^10.9.2",
51
51
  "typescript": "5.9.3"
@@ -67,7 +67,8 @@
67
67
  "devEngines": {
68
68
  "packageManager": {
69
69
  "name": "npm",
70
- "onFail": "ignore"
70
+ "version": "11.16.0",
71
+ "onFail": "warn"
71
72
  }
72
73
  },
73
74
  "main": "lib/index.js",
@@ -75,7 +76,7 @@
75
76
  "publishConfig": {
76
77
  "access": "public"
77
78
  },
78
- "version": "0.0.0",
79
+ "version": "0.0.1",
79
80
  "jest": {
80
81
  "coverageProvider": "v8",
81
82
  "testMatch": [
@@ -123,6 +124,7 @@
123
124
  },
124
125
  "types": "lib/index.d.ts",
125
126
  "type": "module",
127
+ "packageManager": "npm@11.16.0",
126
128
  "exports": {
127
129
  ".": {
128
130
  "types": "./lib/index.d.ts",