-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
package.json
73 lines (73 loc) · 1.81 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": "@vue/apollo-composable",
"version": "4.2.1",
"description": "Apollo GraphQL for Vue Composition API",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-apollo.git",
"directory": "packages/vue-apollo-composable"
},
"keywords": [
"vue",
"apollo",
"graphql",
"composition"
],
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-apollo/issues"
},
"homepage": "https://apollo.vuejs.org/",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"files": [
"dist"
],
"scripts": {
"dev": "rimraf dist && nodemon --exec 'pnpm run build:code' --watch src --ext js,ts",
"build": "rimraf dist && pnpm run build:code",
"build:code": "node esbuild.mjs && tsc -d --emitDeclarationOnly",
"prepublishOnly": "pnpm run test && pnpm run build",
"test": "pnpm run test:types",
"test:types": "tsc -p tests/types/"
},
"dependencies": {
"throttle-debounce": "^5.0.0",
"ts-essentials": "^9.4.0",
"vue-demi": "^0.14.6"
},
"peerDependencies": {
"@apollo/client": "^3.4.13",
"@vue/composition-api": "^1.0.0",
"graphql": ">=15",
"vue": "^2.6.0 || ^3.1.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@apollo/client": "^3.7.16",
"@types/throttle-debounce": "^5.0.0",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"nodemon": "^1.19.4",
"rimraf": "^5.0.1",
"typescript": "^4.9.5",
"vue": "^3.3.4"
}
}