forked from 0no-co/gql.tada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 3.69 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "gql.tada",
"description": "The spec-compliant & magical GraphQL query language engine in the TypeScript type system",
"version": "1.4.1",
"author": "0no.co <[email protected]>",
"source": "./src/index.ts",
"main": "./dist/gql-tada",
"module": "./dist/gql-tada.mjs",
"types": "./dist/gql-tada.d.ts",
"sideEffects": false,
"bin": {
"gql.tada": "./bin/cli.js",
"gql-tada": "./bin/cli.js"
},
"files": [
"LICENSE.md",
"README.md",
"cli/",
"bin/",
"dist/"
],
"exports": {
".": {
"types": "./dist/gql-tada.d.ts",
"import": "./dist/gql-tada.mjs",
"require": "./dist/gql-tada.js",
"source": "./src/index.ts"
},
"./cli": {
"types": "./dist/gql-tada-cli.d.ts",
"import": "./dist/gql-tada-cli.mjs",
"require": "./dist/gql-tada-cli.js",
"source": "./src/cli/index.ts"
},
"./internal": {
"types": "./dist/gql-tada-internal.d.ts",
"import": "./dist/gql-tada-internal.mjs",
"require": "./dist/gql-tada-internal.js",
"source": "./src/internal/index.ts"
},
"./package.json": "./package.json"
},
"dependencies": {
"@0no-co/graphql.web": "^1.0.4",
"@gql.tada/cli-utils": "workspace:*",
"@gql.tada/internal": "workspace:*"
},
"public": true,
"keywords": [
"graphql",
"graphql typescript",
"graphql types",
"graphql typegen",
"graphql-js",
"client-side graphql"
],
"scripts": {
"test": "vitest test",
"bench": "vitest bench --typecheck.enabled=false",
"check": "tsc",
"lint": "eslint --ext=js,ts .",
"build": "rollup -c scripts/rollup.config.mjs",
"clean": "rimraf dist node_modules/.cache",
"prepublishOnly": "run-s clean build check test",
"prepare": "node ./scripts/prepare.js",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "changeset publish"
},
"repository": "https://github.com/0no-co/gql.tada",
"bugs": {
"url": "https://github.com/0no-co/gql.tada/issues"
},
"homepage": "https://gql-tada.0no.co/",
"license": "MIT",
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "es5"
},
"lint-staged": {
"*.{ts,js}": "eslint -c scripts/eslint-preset.js --fix",
"*.json": "prettier --write"
},
"eslintConfig": {
"root": true,
"extends": [
"./scripts/eslint-preset.js"
]
},
"pnpm": {
"overrides": {
"gql.tada": "workspace:*",
"astro-expressive-code": "^0.31.0",
"typescript": "^5.3.3"
}
},
"devDependencies": {
"@0no-co/typescript.js": "5.3.2-2",
"@babel/plugin-transform-block-scoping": "^7.23.4",
"@babel/plugin-transform-typescript": "^7.23.6",
"@changesets/cli": "^2.27.1",
"@changesets/get-github-info": "^0.6.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"expect-type": "^0.17.3",
"graphql": "^16.8.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.9.4",
"rollup-plugin-cjs-check": "^1.0.3",
"rollup-plugin-dts": "^6.1.0",
"terser": "^5.26.0",
"typescript": "^5.3.3",
"vitest": "1.1.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}