-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "@stackworx/relay-extractor",
"type": "module",
"version": "0.0.3",
"description": "Relay Query Extractor for Testing",
"license": "MIT",
"homepage": "https://github.com/stackworx/RelayExtractor",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"relay-extractor": "dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"local": "node dist/index.mjs"
},
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"@graphql-tools/relay-operation-optimizer": "7.0.27",
"@stackworx/relay-extractor": "^0.0.1",
"graphql": "^16.12.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/node": "^20.10.0",
"@types/yargs": "^17.0.35",
"ts-node": "^10.9.2",
"tsdown": "^0.18.1",
"typescript": "^5.3.3",
"vitest": "^4.0.16"
}
}