-
-
Notifications
You must be signed in to change notification settings - Fork 523
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "@vue/apollo-util",
"version": "4.0.0-beta.6",
"description": "Apollo GraphQL for Vue - Utilities",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-apollo.git",
"directory": "packages/vue-apollo-util"
},
"keywords": [
"vue",
"apollo",
"graphql",
"util"
],
"author": "Guillaume Chau <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-apollo/issues"
},
"homepage": "https://apollo.vuejs.org/",
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": "./*"
},
"files": [
"dist"
],
"scripts": {
"dev": "pnpm run build --watch",
"build": "rm -rf dist && tsc --outDir dist/esm -d && tsc --outDir dist/cjs --module commonjs --target ES2017",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@apollo/client": "^3.7.7",
"graphql": "^16.6.0",
"typescript": "^4.7.4"
}
}