@globalart/ddd 1.0.0 → 1.0.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 (3) hide show
  1. package/README.md +20 -0
  2. package/package.json +14 -12
  3. package/LICENSE +0 -21
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @globalart/ddd
2
+
3
+ A comprehensive Domain-Driven Design (DDD) toolkit for NestJS applications, providing essential building blocks for building robust, maintainable domain models.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @globalart/ddd
9
+ ```
10
+
11
+ ## Documentation
12
+
13
+ 📖 **[Complete documentation and usage examples](https://nestjs-toolkit.js.org/packages/ddd)**
14
+
15
+ The documentation includes:
16
+ - Detailed guides for all components
17
+ - Real-world usage scenarios
18
+ - API reference
19
+ - DDD best practices in NestJS
20
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalart/ddd",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A advanced DDD for NestJS",
5
5
  "author": {
6
6
  "name": "GlobalArt, Inc"
@@ -27,7 +27,19 @@
27
27
  "keywords": [
28
28
  "ddd"
29
29
  ],
30
+ "scripts": {
31
+ "format": "prettier --write \"**/*.ts\"",
32
+ "test": "jest --runInBand --passWithNoTests",
33
+ "test:cov": "jest --coverage --passWithNoTests",
34
+ "coveralls": "yarn run test:cov --coverageReporters=text-lcov | coveralls",
35
+ "build": "tsdown",
36
+ "build:watch": "tsdown --watch",
37
+ "prepublishOnly": "npm run build",
38
+ "publish:dev": "npm publish --access public --tag dev",
39
+ "publish:npm": "release-it"
40
+ },
30
41
  "devDependencies": {
42
+ "release-it": "19.0.4",
31
43
  "tsdown": "0.14.2"
32
44
  },
33
45
  "publishConfig": {
@@ -42,15 +54,5 @@
42
54
  "ts-pattern": "5.8.0",
43
55
  "uuid": "12.0.0",
44
56
  "zod": "4.1.5"
45
- },
46
- "scripts": {
47
- "format": "prettier --write \"**/*.ts\"",
48
- "test": "jest --runInBand --passWithNoTests",
49
- "test:cov": "jest --coverage --passWithNoTests",
50
- "coveralls": "yarn run test:cov --coverageReporters=text-lcov | coveralls",
51
- "build": "tsdown",
52
- "build:watch": "tsdown --watch",
53
- "publish:dev": "npm publish --access public --tag dev",
54
- "publish:npm": "release-it"
55
57
  }
56
- }
58
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2003 GlobalArt Inc
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.