-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 928 Bytes
/
package.json
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
{
"name": "ai-plugin",
"version": "1.0.2",
"description": "A library that lets you parse and interact with AI capabilities plugins according to Open AI's plugins specifications",
"main": "build/index.js",
"repository": "https://github.com/Pixeladed/ai-plugin",
"author": "Pixeladed",
"license": "MIT",
"keywords": [
"ai-plugin",
"llm",
"openai"
],
"private": false,
"scripts": {
"build": "npx swc ./src -d build",
"test": "jest",
"tool": "node -r @swc-node/register"
},
"devDependencies": {
"@swc-node/register": "^1.6.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.44",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"openapi-types": "^12.1.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"url": "^0.11.0",
"zod": "^3.21.4"
}
}