@adaas/a-concept 0.1.27 → 0.1.29

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/LICENSE +10 -19
  2. package/README.md +12 -7
  3. package/package.json +20 -18
package/LICENSE CHANGED
@@ -1,22 +1,13 @@
1
- (The MIT License)
1
+ Copyright 2025 ADAAS YAZILIM LİMİTED ŞİRKETİ
2
2
 
3
- Copyright (c) 2024 ADAAS <https://adaas.org>
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
4
6
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- 'Software'), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
7
+ http://www.apache.org/licenses/LICENSE-2.0
12
8
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md CHANGED
@@ -4,14 +4,14 @@
4
4
 
5
5
  🚀 A Paradigm Shift for Software Development in the Age of AI and [Industry 5.0](https://research-and-innovation.ec.europa.eu/research-area/industrial-research-and-innovation/industry-50_en).
6
6
 
7
- [![npm](https://img.shields.io/npm/v/@adaas/a-concept.svg)](https://www.npmjs.com/package/@adaas/a-concept)
8
- [![Release](https://img.shields.io/github/release/ADAAS-org/adaas-a-concept.svg)](https://github.com/ADAAS-org/adaas-a-concept/releases)
9
- [![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-blue)](https://www.linkedin.com/in/your-profile/)
10
- [![License](https://img.shields.io/badge/License-MIT-blue)](LICENSE)
11
- [![Open Issues](https://img.shields.io/github/issues/ADAAS-org/adaas-a-concept.svg)](https://github.com/your-framework/repo/issues)
12
- [![Documentation](https://img.shields.io/badge/Docs-Read-blue)](https://a-concept.com/docs)
13
- <!-- [![Version](https://img.shields.io/badge/Version-1.0.0-green)](https://github.com/your-framework/repo/releases/tag/v1.0.0) -->
7
+ ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)
8
+ ![Node.js](https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white)
9
+ ![npm](https://img.shields.io/badge/npm-CB3837?style=for-the-badge&logo=npm&logoColor=white)
14
10
 
11
+ ![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)
12
+ ![Version](https://img.shields.io/npm/v/@adaas/a-concept)
13
+ ![Downloads](https://img.shields.io/npm/dm/@adaas/a-concept)
14
+ ![Build Status](https://img.shields.io/badge/build-passing-brightgreen)
15
15
 
16
16
 
17
17
  ---
@@ -164,4 +164,9 @@ Solution:
164
164
  A-Concept promotes a streamlined approach. By leveraging AI and rethinking team structures, we eliminate unnecessary rituals and focus on achieving results. This makes the development process leaner, faster, and more aligned with business goals.
165
165
 
166
166
 
167
+ ## License
167
168
 
169
+ This project is licensed under the [Apache License 2.0](LICENSE).
170
+
171
+ © 2025 ADAAS YAZILIM LİMİTED ŞİRKETİ All rights reserved.
172
+ All original code and concepts are the intellectual property of ADAAS YAZILIM LİMİTED ŞİRKETİ
package/package.json CHANGED
@@ -1,16 +1,33 @@
1
1
  {
2
2
  "name": "@adaas/a-concept",
3
- "version": "0.1.27",
3
+ "version": "0.1.29",
4
4
  "description": "A-Concept is a framework to build new Applications within or outside the ADAAS ecosystem. This framework is designed to be modular structure regardless environment and program goal.",
5
+ "license": "Apache-2.0",
5
6
  "main": "./dist/index.cjs",
6
7
  "module": "./dist/index.mjs",
7
8
  "types": "./dist/index.d.ts",
9
+ "author": {
10
+ "name": "ADAAS YAZILIM LİMİTED ŞİRKETİ",
11
+ "email": "contact-us@adaas.org"
12
+ },
13
+ "homepage": "https://github.com/ADAAS-org/adaas-a-concept#readme",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/ADAAS-org/adaas-a-concept.git"
17
+ },
18
+ "keywords": [
19
+ "sdk",
20
+ "ai",
21
+ "rag"
22
+ ],
23
+ "bugs": {
24
+ "url": "https://github.com/ADAAS-org/adaas-a-concept/issues"
25
+ },
8
26
  "sideEffects": false,
9
27
  "exports": {
10
28
  ".": {
11
29
  "import": "./dist/index.mjs",
12
- "require": "./dist/index.cjs",
13
- "types": "./dist/index.d.ts"
30
+ "require": "./dist/index.cjs"
14
31
  }
15
32
  },
16
33
  "nodemonConfig": {
@@ -40,21 +57,6 @@
40
57
  "build": "tsup --config tsup.config.ts",
41
58
  "test:simple": "nodemon ./examples/simple/concept.ts"
42
59
  },
43
- "repository": {
44
- "type": "git",
45
- "url": "git+https://github.com/ADAAS-org/adaas-adf-auth.git"
46
- },
47
- "keywords": [
48
- "sdk",
49
- "ai",
50
- "rag"
51
- ],
52
- "author": "adaas.org",
53
- "license": "ISC",
54
- "bugs": {
55
- "url": "https://github.com/ADAAS-org/adaas-adf-auth/issues"
56
- },
57
- "homepage": "https://github.com/ADAAS-org/adaas-adf-auth#readme",
58
60
  "devDependencies": {
59
61
  "@types/chai": "^4.3.14",
60
62
  "@types/jest": "^29.5.12",