-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 901 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
{
"name": "insomna-plugin-import-graphql-request-collection",
"version": "2.0.0",
"main": "build/plugin.js",
"insomnia": {
"name": "import-graphql-request-collection",
"displayName": "Import GraphQL Request Collection Plugin",
"description": "Gets the GraphQL schema from a URL and creates a request collection for all possible queries and mutations",
"images": {
"icon": "icon.svg",
"cover": "cover.svg"
},
"publisher": {
"name": "Long Shot Labs"
},
"applications": {
"core": "2021.2.2"
}
},
"devDependencies": {
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"install-on-mac": "npm install && npm run build && ./install-mac.sh",
"install-on-ubuntu": "npm install && npm run build && ./install-ubuntu.sh"
},
"dependencies": {
"graphql": "^15.6.0"
}
}