-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
70
{
"$schema": "https://json.schemastore.org/package",
"name": "@ferstack/gql-typescript",
"version": "0.6.1",
"description": "An agnostic GraphQL query builder bundled with a generator",
"author": "Fernando Coelho",
"repository": "https://github.com/Fgc17/apollo-query-builder",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./cli": {
"import": "./dist/cli.js",
"require": "./dist/cli.js"
}
},
"type": "module",
"main": "dist/index.js",
"bin": {
"gql-typescript": "dist/cli/cmd/cmd.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "rm -rf dist && tsc",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"playground:generate-types": "tsx src/cli/cmd/cmd.ts --config ./playground/gql-typescript.config.js",
"change-version": "pnpm build && pnpm changeset",
"publish-version": "pnpm build && pnpm changeset && pnpm changeset version && pnpm changeset publish"
},
"dependencies": {
"@ferstack/generated": "2.0.9",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/schema-ast": "^4.0.2",
"@graphql-codegen/typescript": "^4.0.7",
"axios": "1.7.2",
"chokidar": "3.6.0",
"commander": "^12.1.0",
"glob": "^10.4.1",
"graphql": "16.8.2",
"graphql-tag": "^2.12.6",
"ws": "^8.17.1"
},
"devDependencies": {
"tsx": "4.15.5",
"@changesets/cli": "2.26.2",
"@types/node": "18.16.12",
"@types/ws": "^8.5.10",
"graphql-request": "7.0.1",
"prettier": "^3.2.2",
"eslint-config-turbo": "^1.11.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"@typescript-eslint/parser": "^6.17.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"eslint-plugin-prettier": "^5.1.1",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}