-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "aimyapi",
"version": "0.2.1",
"description": "AI My API! Use LLMs to create small programs that safely* run and make calls against your API. Similar to ChatGPT's Code Interpreter.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"example1": "tsx ./example/example1.ts",
"example2": "tsx ./example/example2.ts",
"example3": "tsx ./example/example3.ts",
"build": "pkgroll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhiteNoise/aimyapi.git"
},
"keywords": [
"AI",
"LLM",
"OpenAI"
],
"dependencies": {
"dotenv": "^16.0.3",
"openai": "^4.61.0",
"quickjs-emscripten": "^0.22.0",
"typescript": "^5.0.3"
},
"author": "David Wallin",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhiteNoise/aimyapi/issues"
},
"homepage": "https://github.com/WhiteNoise/aimyapi#readme",
"devDependencies": {
"@types/node": "^18.16.2",
"pkgroll": "^2.5.0",
"tsx": "^4.19.1"
}
}