gQuery/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2021-09-30 16:19:53 +00:00
{
"author": "Scott Tolinski",
"bugs": {
"url": "https://github.com/leveluptuts/gQuery/issues"
},
"dependencies": {
"camel-case": "^4.1.2",
"pascal-case": "^3.1.2",
2021-10-20 03:58:13 +00:00
"svelte": "^3.44.0",
"vite": "^2.6.10"
2021-09-30 16:19:53 +00:00
},
"description": "Not like jQuery. A GraphQL Fetcher & Cache for Svelte Kit",
2021-10-06 21:41:44 +00:00
"devDependencies": {
"@babel/types": "^7.15.6",
"@graphql-codegen/cli": "^2.2.1",
2021-10-20 03:58:13 +00:00
"@graphql-codegen/import-types-preset": "^2.1.6",
"@graphql-codegen/near-operation-file-preset": "^2.1.6",
"@graphql-codegen/plugin-helpers": "^2.2.0",
"@graphql-codegen/typescript-operations": "^2.1.8",
2021-10-20 03:58:13 +00:00
"@graphql-codegen/visitor-plugin-common": "^2.4.0",
"@urql/core": "^2.3.3",
2021-10-06 21:41:44 +00:00
"graphql": "^15.6.1",
"just-pascal-case": "^2.0.0",
2021-10-20 03:58:13 +00:00
"typescript": "^4.4.4"
2021-10-06 21:41:44 +00:00
},
2021-09-30 16:19:53 +00:00
"exports": {
2021-10-06 21:41:44 +00:00
".": "./dist/index.js",
2021-10-13 17:06:31 +00:00
"./*": "./dist/index.js",
"./codegen": "./codegen/plugin.js",
"./codegen-plugin": "./codegen/codegen.js",
2021-10-06 21:41:44 +00:00
"./package.json": "./package.json"
2021-09-30 16:19:53 +00:00
},
"homepage": "https://github.com/leveluptuts/gQuery#readme",
"keywords": [
"graphql"
],
"license": "ISC",
2021-10-13 17:06:31 +00:00
"name": "@leveluptuts/g-query",
2021-09-30 16:19:53 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/leveluptuts/gQuery.git"
},
"scripts": {
2021-10-06 21:41:44 +00:00
"dev": "tsc --watch",
"dev:codegen": "tsc -w --project codegen.tsconfig.json",
2021-09-30 16:19:53 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.0.5"
2021-09-30 16:19:53 +00:00
}