-
-
Notifications
You must be signed in to change notification settings - Fork 815
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "@graphql-tools/graphql-tag-pluck",
"version": "7.2.8",
"description": "Pluck graphql-tag template literals",
"license": "MIT",
"repository": {
"type": "git",
"url": "ardatan/graphql-tools",
"directory": "packages/graphql-tag-pluck"
},
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@babel/parser": "^7.16.8",
"@babel/traverse": "^7.16.8",
"@babel/types": "^7.16.8",
"@graphql-tools/utils": "8.6.11",
"tslib": "~2.4.0"
},
"devDependencies": {
"@babel/parser": "7.18.0",
"@babel/traverse": "7.18.0",
"@babel/types": "7.18.0",
"@types/babel__traverse": "7.17.1",
"@vue/compiler-sfc": "3.2.34",
"svelte": "3.48.0",
"svelte2tsx": "0.5.10"
},
"buildOptions": {
"external": [
"@vue/compiler-sfc",
"svelte2tsx"
]
},
"publishConfig": {
"access": "public",
"directory": "dist"
}
}