chat-nest-core 1.0.0 → 1.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 (1) hide show
  1. package/package.json +40 -29
package/package.json CHANGED
@@ -1,31 +1,42 @@
1
1
  {
2
- "name": "chat-nest-core",
3
- "version": "1.0.0",
4
- "type": "module",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "license": "ISC",
8
- "author": "Shivam Shukla",
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/shivams10/chat-nest"
12
- },
13
- "homepage": "https://github.com/shivams10/chat-nest",
14
- "bugs": {
15
- "url": "https://github.com/shivams10/chat-nest/issues"
16
- },
17
- "exports": {
18
- ".": {
19
- "import": "./dist/index.js",
20
- "types": "./dist/index.d.ts"
21
- }
22
- },
23
- "files": ["dist"],
24
- "scripts": {
25
- "build": "tsup src/index.ts --dts --format esm"
26
- },
27
- "devDependencies": {
28
- "typescript": "^5.9.3",
29
- "tsup": "^8.5.1"
30
- }
2
+ "name": "chat-nest-core",
3
+ "description": "Shared types and contracts for the Chat Nest AI platform.",
4
+ "version": "1.0.1",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "license": "ISC",
9
+ "author": "Shivam Shukla",
10
+ "keywords": [
11
+ "ai",
12
+ "typescript",
13
+ "sdk",
14
+ "contracts",
15
+ "types"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/shivams10/chat-nest.git",
20
+ "directory": "packages/chat-nest-core"
21
+ },
22
+ "homepage": "https://github.com/shivams10/chat-nest",
23
+ "bugs": {
24
+ "url": "https://github.com/shivams10/chat-nest/issues"
25
+ },
26
+ "exports": {
27
+ ".": {
28
+ "import": "./dist/index.js",
29
+ "types": "./dist/index.d.ts"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "scripts": {
36
+ "build": "tsup src/index.ts --dts --format esm"
37
+ },
38
+ "devDependencies": {
39
+ "typescript": "^5.9.3",
40
+ "tsup": "^8.5.1"
41
+ }
31
42
  }