forked from timkendall/tql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "@lorefnon/tql",
"author": "Timothy Kendall",
"license": "MIT",
"version": "2.0.1",
"description": "Write GraphQL queries in TypeScript.",
"sideEffects": false,
"keywords": [
"graphql",
"typescript",
"query builder",
"codegen"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"workspaces": [
".",
"codegen"
],
"scripts": {
"build": "tsc -b",
"prepublishOnly": "pnpm run build:release",
"build:release": "tsc --build tsconfig.release.json",
"build:website": "cd ./website && npm run build",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.release.tsbuildinfo",
"dev": "tsc -b -w",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --cache=false",
"type-test": "tsd",
"format": "dprint fmt",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@apollo/client": "^3.8.8",
"@arkweid/lefthook": "^0.7.7",
"@types/deep-freeze": "^0.1.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"@types/yargs": "^17.0.32",
"auto-changelog": "^2.4.0",
"cross-env": "^7.0.3",
"deep-freeze": "^0.0.1",
"dprint": "^0.44.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsd": "^0.30.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"graphql": "^16.8.1"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"react": "18.2.0"
}
}