-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
{
"name": "graphql-utils",
"version": "1.0.58",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"gql-codegen": "graphql-codegen --config codegen.ts && node append-graphql-gen-file.mjs",
"start": "npm run gql-codegen && npm run build",
"bump-version": "node bumpVersion.js && npm update --package-lock-only",
"bump-version:minor": "node bumpVersion.js minor && npm update --package-lock-only",
"bump-version:major": "node bumpVersion.js major && npm update --package-lock-only"
},
"peerDependencies": {
"@apollo/client": "*"
},
"devDependencies": {
"@apollo/client": "^3.12.0",
"@graphql-codegen/cli": "^6.1.0",
"graphql": "^16.12.0",
"tsup": "^8.0.1",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricetra/graphql-utils.git"
},
"author": "Ayaan Siddiqui",
"license": "ISC",
"bugs": {
"url": "https://github.com/pricetra/graphql-utils/issues"
},
"homepage": "https://github.com/pricetra/graphql-utils#readme"
}