-
-
Notifications
You must be signed in to change notification settings - Fork 454
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "@urql/core",
"version": "5.0.1",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
"bugs": "https://github.com/urql-graphql/urql/issues",
"license": "MIT",
"author": "urql GraphQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/urql-graphql/urql.git",
"directory": "packages/core"
},
"keywords": [
"graphql",
"graphql client",
"state management",
"cache",
"exchanges"
],
"main": "dist/urql-core",
"module": "dist/urql-core.mjs",
"types": "dist/urql-core.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/urql-core.d.ts",
"import": "./dist/urql-core.mjs",
"require": "./dist/urql-core.js",
"source": "./src/index.ts"
},
"./package.json": "./package.json",
"./internal": {
"types": "./dist/urql-core-internal.d.ts",
"import": "./dist/urql-core-internal.mjs",
"require": "./dist/urql-core-internal.js",
"source": "./src/internal/index.ts"
}
},
"files": [
"LICENSE",
"README.md",
"dist/",
"internal/"
],
"scripts": {
"test": "vitest --config ../../vitest.config.ts",
"clean": "rimraf dist",
"check": "tsc --noEmit",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.mjs",
"prepare": "node ../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean build"
},
"dependencies": {
"@0no-co/graphql.web": "^1.0.5",
"wonka": "^6.3.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}