-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "graphiql-plugin-chatgpt",
"version": "1.3.0",
"description": "Graphiql ChatGPT plugin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cimdalli/graphiql-plugin-chatgpt.git"
},
"keywords": [
"graphql",
"graphiql",
"plugin",
"chatgpt",
"openai"
],
"author": "Okan Cetin (cimdalli)",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "microbundle src/index.ts --jsx React.createElement --output dist",
"preversion": "npm run build",
"postversion": "git push --follow-tags"
},
"peerDependencies": {
"@graphiql/react": "^0.17.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@graphiql/react": "^0.17.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"graphql": "^16.6.0",
"microbundle": "^0.15.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.0",
"typescript": "^5.0.2"
},
"packageManager": "[email protected]",
"type": "module",
"main": "src/index.ts",
"module": "./dist/graphiql-plugin-chatgpt.modern.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}