-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.4 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.4 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
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
{
"name": "ts-gql-plugin",
"version": "1.5.1",
"packageManager": "yarn@3.3.1",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"description": "TypeScript Language Service Plugin for GraphQL DocumentNode typing",
"author": {
"name": "Richard Haddad"
},
"keywords": [
"typescript",
"graphql",
"language service"
],
"homepage": "https://github.com/chnapy/ts-gql-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/chnapy/ts-gql-plugin"
},
"bugs": {
"url": "https://github.com/chnapy/ts-gql-plugin/issues"
},
"scripts": {
"c:format:fix": "prettier -w .",
"c:lint": "eslint . --cache --cache-location node_modules/.cache/.eslintcache",
"c:lint:fix": "yarn c:lint --fix",
"c:type": "tsc-ls -b",
"c:test": "yarn c:test:watch --run",
"c:test:watch": "vitest --outputTruncateLength=9999 --passWithNoTests",
"build": "tsc -p tsconfig.build.json",
"benchmark": "ts-node --transpile-only benchmark/benchmark.ts"
},
"dependencies": {
"@graphql-codegen/core": "2.6.8",
"@graphql-codegen/typescript": "2.8.8",
"@graphql-codegen/typescript-operations": "2.5.13",
"deasync": "0.1.28",
"graphql-config": "4.4.0",
"graphql-language-service": "5.1.1",
"graphql-language-service-utils": "2.7.1"
},
"peerDependencies": {
"graphql": ">= 16",
"graphql-tag": ">= 2",
"typescript": ">= 4"
},
"devDependencies": {
"@apollo/client": "3.7.5",
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@types/benchmark": "2.1.2",
"@types/deasync": "0.1.2",
"@types/node": "17.0.45",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"benchmark": "2.1.4",
"c8": "7.12.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"prettier": "2.8.3",
"ts-gql-plugin": "link:./",
"ts-node": "10.9.1",
"tsc-ls": "0.0.5",
"tslib": "2.5.0",
"typescript": "4.9.5",
"vite": "2.9.15",
"vitest": "0.28.3"
},
"dependenciesMeta": {
"esbuild@0.14.43": {
"built": true
}
}
}