-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.49 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
{
"name": "tiny-ai-api",
"description": "A customizable and extensible client api for managing conversations and AI interactions, currently supporting the **Google Gemini** API — with flexibility to support any similar AI APIs.",
"version": "1.1.9",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"ethereum": "jasmindreasond.x",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"repository": "https://github.com/Tiny-Essentials/Tiny-AI-API.git",
"author": "Yasmin Seidel (JasminDreasond)",
"license": "AGPL-3.0-only",
"dependencies": {
"js-base64": "^3.7.8",
"jsonrepair": "^3.12.0",
"object-hash": "^3.0.0",
"tiny-essentials": "^1.24.3"
},
"keywords": [
"ai",
"api",
"llm",
"chatbot",
"gemini",
"google-ai",
"ai-client",
"ai-session",
"multi-provider",
"ai-api",
"api-client",
"ai-conversation-manager",
"ai-conversation",
"llm-framework",
"llm-client",
"customizable",
"extensible"
],
"scripts": {
"test": "npm run test:mjs && npm run test:cjs && npm run test:js",
"test:js": "npx babel-node test/index.js",
"test:mjs": "node test/index.mjs",
"test:cjs": "node test/index.cjs",
"fix:prettier": "prettier --write ./src/* && prettier --write ./test/*&& prettier --write ./build/*",
"auto-build": "npm run build",
"build": "tsc -p tsconfig.json && rollup -c",
"build-clean": "npm run clean && npm run build",
"build-dist": "npm run build",
"build-browserify": "npx browserify build/browserify.js -p esmify > dist/TinyAiApi.web.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/events": "^3.0.3",
"@types/node": "^24.0.0",
"@types/object-hash": "^3.0.6",
"babel-preset-es2015": "^6.24.1",
"browser-resolve": "^2.0.0",
"browserify": "^17.0.1",
"esmify": "^2.1.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"prettier": "3.5.3",
"rollup": "^4.40.0",
"rollup-preserve-directives": "^1.1.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1"
}
}