-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "rahyana-ai-api-typescript-examples",
"version": "1.0.0",
"description": "TypeScript examples for Rahyana AI API - Complete developer toolkit with type safety",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsx index.ts",
"start": "node dist/index.js",
"test": "tsx test-all-examples.ts",
"test:individual": "tsx",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"rahyana",
"ai",
"api",
"typescript",
"openai",
"gpt-5",
"gpt-4o",
"chat-completions",
"ai-development",
"machine-learning",
"typescript-examples",
"ai-toolkit",
"developer-tools"
],
"author": "Rahyana Team",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"form-data": "^4.0.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/mime-types": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}