-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.15 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vite-plugin-vue-gql",
"description": "Vue SFC GraphQL Block",
"version": "0.2.10",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Jacob Clevenger <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jacobclevenger/vite-plugin-vue-gql"
},
"homepage": "https://github.com/jacobclevenger/vite-plugin-vue-gql",
"bugs": "https://github.com/jacobclevenger/vite-plugin-vue-gql/issues",
"files": [
"dist",
"client.d.ts"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"preview": "tsup src/index.ts --dts --format cjs,esm && npm -C docs run dev"
},
"dependencies": {
"@babel/traverse": "^7.13.15",
"@graphql-codegen/core": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.4",
"@vue/compiler-sfc": "^3.0.5",
"chalk": "^4.1.0",
"debug": "^4.3.2",
"deep-equal": "^2.0.5",
"local-pkg": "^0.4.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.5",
"undici": "^4.7.2"
},
"peerDependencies": {
"@urql/vue": "0.4.0",
"graphql": "^15.5.0",
"vite": "^2.0.0-beta.64",
"vue": "^3.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.4.3",
"@babel/generator": "^7.13.0",
"@babel/parser": "^7.13.4",
"@types/babel-generator": "^6.25.3",
"@types/babel-traverse": "^6.25.5",
"@types/babel__traverse": "^7.11.1",
"@types/debug": "^4.1.5",
"@types/deep-equal": "^1.0.1",
"@types/glob-to-regexp": "^0.4.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@urql/vue": "0.4.0",
"@vue/compiler-core": "^3.0.11",
"@vue/compiler-dom": "^3.0.11",
"@vue/shared": "^3.0.5",
"eslint": "^7.20.0",
"fast-glob": "^3.2.5",
"graphql": "^15.5.0",
"rollup": "^2.39.1",
"tsup": "^3.12.1",
"typescript": "^4.1.5",
"vite": "^2.0.2",
"vue": "^3.0.5"
}
}