forked from TahaSh/qwikql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
59
60
61
62
{
"name": "qwikql",
"version": "0.0.3",
"description": "A GraphQL Client for Qwik Framework",
"author": "Taha Shashtari ([email protected])",
"main": "./dist/index.qwik.cjs",
"qwik": "./dist/index.qwik.mjs",
"module": "./dist/index.qwik.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.qwik.mjs",
"require": "./dist/index.qwik.cjs"
}
},
"files": [
"dist",
"dist/types"
],
"engines": {
"node": ">=15.0.0"
},
"private": false,
"license": "MIT",
"type": "module",
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"release": "np",
"qwik": "qwik"
},
"peerDependencies": {
"@builder.io/qwik": "1.1.5",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0"
},
"devDependencies": {
"@builder.io/qwik": "1.1.5",
"@types/eslint": "8.40.2",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"esinstall": "^1.1.7",
"eslint": "8.43.0",
"eslint-plugin-qwik": "^1.1.5",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"node-fetch": "3.3.1",
"np": "8.0.4",
"prettier": "2.8.8",
"typescript": "5.1.3",
"vite": "4.3.9"
},
"repository": {
"type": "git",
"url": "https://github.com/TahaSh/qwikql.git"
}
}