-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1015 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1015 Bytes
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
{
"name": "@302ai/openai-plugin",
"version": "1.0.0",
"description": "OpenAI provider plugin for 302 AI Studio",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"plugin.json",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"package": "pnpm run build && node scripts/package.js"
},
"keywords": [
"302ai",
"plugin",
"openai",
"provider",
"gpt",
"chatgpt"
],
"packageManager": "pnpm@10.9.0",
"author": "302.AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/302ai/openai-plugin.git"
},
"bugs": {
"url": "https://github.com/302ai/openai-plugin/issues"
},
"homepage": "https://github.com/302ai/openai-plugin#readme",
"peerDependencies": {
"@302ai/studio-plugin-sdk": "^1.0.0"
},
"devDependencies": {
"@302ai/studio-plugin-sdk": "^1.0.0",
"@types/node": "^22.0.0",
"archiver": "^7.0.0",
"tsup": "^8.0.0",
"typescript": "^5.6.0"
}
}