-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.76 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "use-pq",
"version": "0.0.38",
"description": "Queryless GraphQL",
"repository": {
"type": "git",
"url": "git+https://github.com/OFRBG/use-pq.git"
},
"bugs": {
"url": "https://github.com/OFRBG/use-pq/issues"
},
"homepage": "https://use-pq.com",
"author": "Oscar Fonseca <[email protected]>",
"license": "MIT",
"type": "module",
"publishConfig": {
"@OFRBG:registry": "https://npm.pkg.github.com"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm build-fast --dts-resolve",
"test": "vitest",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"react": "17"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12",
"@testing-library/react-hooks": "^8.0.0",
"@tsconfig/esm": "^1.0.0",
"@types/lodash.get": "^4.4.7",
"@types/lodash.set": "^4.3.7",
"@types/prettier": "^2.6.3",
"@types/react": "17",
"@types/testing-library__jest-dom": "^5.14.4",
"@vitest/ui": "^0.15.1",
"c8": "^7.11.3",
"graphql": "^16.5.0",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"react": "17",
"react-dom": "17",
"react-test-renderer": "17",
"ts-toolbelt": "^9.6.0",
"tsup": "^6.1.2",
"typescript": "^4.7.3",
"urql": "^2.2.2",
"vitest": "^0.14.2"
}
}