@ts-cloud/core 0.2.0 → 0.2.2

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 +5 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
- # ts-cloud-core
1
+ # @ts-cloud/core
2
2
 
3
3
  Core CloudFormation generation library for ts-cloud. Provides the foundational building blocks for defining and generating AWS CloudFormation templates programmatically in TypeScript.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- bun add ts-cloud-core
8
+ bun add @ts-cloud/core
9
9
  ```
10
10
 
11
11
  ```bash
12
- npm install ts-cloud-core
12
+ npm install @ts-cloud/core
13
13
  ```
14
14
 
15
15
  ## Usage
16
16
 
17
17
  ```typescript
18
- import { defineStack, Resource } from 'ts-cloud-core'
18
+ import { defineStack, Resource } from '@ts-cloud/core'
19
19
 
20
20
  // Define a CloudFormation stack using TypeScript
21
21
  const stack = defineStack({
@@ -29,7 +29,7 @@ const stack = defineStack({
29
29
  ## Features
30
30
 
31
31
  - Programmatic CloudFormation template generation
32
- - Full TypeScript type safety via `ts-cloud-aws-types`
32
+ - Full TypeScript type safety via `@ts-cloud/aws-types`
33
33
  - Support for compute, storage, networking, database, CDN, DNS, and more
34
34
  - Auth, security, and permissions abstractions
35
35
  - Messaging, queue, and event integrations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
@@ -31,7 +31,7 @@
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "ts-cloud-aws-types": "0.2.0"
34
+ "@ts-cloud/aws-types": "0.2.2"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.9.3"