-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.05 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
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
{
"name": "@gqty/cli",
"version": "5.0.0",
"description": "Interactive codegen for GQty",
"keywords": [
"client",
"codegen",
"gqty",
"graphql",
"interactive",
"reactive"
],
"homepage": "https://gqty.dev",
"repository": {
"type": "git",
"url": "https://github.com/gqty-dev/gqty.git"
},
"license": "MIT",
"author": "PabloSzx <pablosaez1995@gmail.com>",
"maintainers": [
"Vicary Archangel <vicary.archangel@member.mensa.org>"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./deps": "./dist/deps.js",
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"bin": {
"gqty": "bin/gqty.mjs"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsx build.ts",
"prepare": "pnpm build",
"postpublish": "gh-release",
"test": "jest",
"test:watch": "jest --watch",
"test:watch-coverage": "rm -rf coverage && mkdir -p coverage/lcov-report && concurrently --raw \"jest --watchAll\" \"pnpm dlx serve -l 8787 coverage/lcov-report\" \"pnpm dlx wait-on tcp:8787 coverage/lcov-report/index.html && curl http://localhost:8787\""
},
"eslintConfig": {
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/consistent-type-imports": [
"error",
{
"fixStyle": "inline-type-imports"
}
],
"@typescript-eslint/no-import-type-side-effects": "error"
},
"ignorePatterns": [
"node_modules/**",
"**/*.js",
"**/*.test.ts"
]
},
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"@graphql-codegen/core": "^4.0.2",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-tools/utils": "^10.9.1",
"@graphql-tools/wrap": "^10.1.2",
"@inquirer/prompts": "^7.7.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"cross-fetch": "^4.1.0",
"fast-glob": "^3.3.3",
"gqty": "workspace:^",
"graphql": "^16.11.0",
"lodash-es": "^4.17.21",
"micromatch": "^4.0.8",
"prettier": "^3.9.6"
},
"devDependencies": {
"@pnpm/types": "^1000.6.0",
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.16.5",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"p-lazy": "^3.1.0",
"test-utils": "workspace:^",
"tmp-promise": "^3.0.3",
"typescript": "^5.8.3"
},
"peerDependencies": {
"trading-signals": "^6.8.0"
},
"peerDependenciesMeta": {
"trading-signals": {
"optional": true
}
},
"publishConfig": {
"directory": "dist"
}
}