-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.14 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"devDependencies": {
"@eslint/js": "^9.29.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"globals": "^16.2.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.1.2",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"uuid": "^13.0.0"
},
"name": "ctxiq",
"version": "0.1.1",
"description": "Context and memory orchestration toolkit for building smarter AI assistants with TypeScript.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"core": [
"dist/core/index.d.ts"
],
"core/llm": [
"dist/core/llm/index.d.ts"
],
"core/storage": [
"dist/core/storage/index.d.ts"
],
"core/tokens": [
"dist/core/tokens/index.d.ts"
],
"react": [
"dist/react/index.d.ts"
],
"types": [
"dist/types/index.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"import": "./dist/core/index.js",
"require": "./dist/core/index.cjs"
},
"./core/llm": {
"import": "./dist/core/llm/index.js",
"require": "./dist/core/llm/index.cjs"
},
"./core/storage": {
"import": "./dist/core/storage/index.js",
"require": "./dist/core/storage/index.cjs"
},
"./core/tokens": {
"import": "./dist/core/tokens/index.js",
"require": "./dist/core/tokens/index.cjs"
},
"./react": {
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
},
"./types": {
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
}
},
"type": "module",
"scripts": {
"dev": "tsup --watch",
"clean": "tsup --clean",
"prebuild": "npm run clean",
"build": "tsup",
"test": "jest --config jest.config.mjs",
"lint": "eslint src test --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"all": "npm run lint && npm run format && npm run format:check && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Programming-Sai/CtxIQ.git"
},
"keywords": [
"ai",
"context",
"memory",
"llm",
"chatbot",
"conversation",
"typescript",
"toolkit",
"summarization",
"prompt-engineering"
],
"author": "Programming Sai",
"license": "MIT",
"bugs": {
"url": "https://github.com/Programming-Sai/CtxIQ/issues"
},
"homepage": "https://ctxiq.vercel.app",
"dependencies": {
"@dqbd/tiktoken": "^1.0.22"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": ">=17"
}
}