forked from leveluptuts/gQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"author": "Scott Tolinski",
"bugs": {
"url": "https://github.com/leveluptuts/gQuery/issues"
},
"dependencies": {
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/import-types-preset": "^2.1.8",
"@graphql-codegen/near-operation-file-preset": "^2.2.2",
"@graphql-codegen/plugin-helpers": "^2.3.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@graphql-codegen/visitor-plugin-common": "^2.5.1",
"camel-case": "^4.1.2",
"execa": "^6.0.0",
"graphql": "^16.2.0",
"just-pascal-case": "^3.0.1",
"pascal-case": "^3.1.2",
"svelte": "^3.44.3"
},
"description": "Not like jQuery. A GraphQL Fetcher & Cache for Svelte Kit",
"devDependencies": {
"@babel/types": "^7.16.0",
"typescript": "^4.5.4"
},
"exports": {
".": "./dist/index.js",
"./codegen": "./codegen/plugin.js",
"./codegen-plugin": "./codegen/codegen.js",
"./gFetch": "./dist/gFetch.js",
"./package.json": "./package.json"
},
"homepage": "https://github.com/leveluptuts/gQuery#readme",
"keywords": [
"graphql"
],
"license": "ISC",
"name": "@leveluptuts/g-query",
"repository": {
"type": "git",
"url": "git+https://github.com/leveluptuts/gQuery.git"
},
"scripts": {
"dev": "tsc --watch",
"dev:codegen": "tsc -w --project codegen.tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"svelte": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.2.3"
}