booths 0.0.0

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.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "booths",
3
+ "private": false,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "dev": "vite",
20
+ "build": "tsc && vite build",
21
+ "preview": "vite preview"
22
+ },
23
+ "devDependencies": {
24
+ "@eslint/js": "^9.30.1",
25
+ "@types/node": "^24.0.11",
26
+ "eslint": "^9.30.1",
27
+ "openai": "^5.8.2",
28
+ "typescript": "~5.8.3",
29
+ "typescript-eslint": "^8.36.0",
30
+ "vite": "^7.0.3",
31
+ "vite-plugin-dts": "^4.5.4",
32
+ "vite-tsconfig-paths": "^5.1.4"
33
+ },
34
+ "peerDependencies": {
35
+ "openai": "^5.8.2"
36
+ },
37
+ "description": "The Core Booth system is a modular and extensible framework for building and managing conversational AI agents, referred to as \"Booths.\" It provides a structured way to define the capabilities, context, and tools for different AI-powered conversational flows.",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/phoneburner/booths.git"
41
+ },
42
+ "keywords": [
43
+ "llm"
44
+ ],
45
+ "author": "Philip Tadeo",
46
+ "license": "ISC",
47
+ "bugs": {
48
+ "url": "https://github.com/phoneburner/booths/issues"
49
+ },
50
+ "homepage": "https://github.com/phoneburner/booths#readme",
51
+ "dependencies": {
52
+ "user": "^0.0.0"
53
+ }
54
+ }