-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "extract-schema-coordinates",
"version": "3.0.8",
"description": "extract schema coordinates from GraphQL documents",
"type": "module",
"types": "./lib/extract-schema-coordinates.d.ts",
"exports": {
".": {
"require": "./lib/extract-schema-coordinates.cjs",
"import": "./lib/extract-schema-coordinates.js",
"types": "./lib/extract-schema-coordinates.d.ts"
}
},
"repository": "[email protected]:sharkcore/extract-schema-coordinates.git",
"author": "Mark Larah <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npx tsup-node src/extract-schema-coordinates.ts --dts --format esm,cjs --out-dir lib",
"typecheck": "npx tsup-node src/extract-schema-coordinates.ts --dts-only",
"postinstall": "npx husky install",
"prepare": "./strip-postinstall.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/jest": "^29.5.8",
"@types/lodash.memoize": "^4.1.9",
"@types/node": "^20.9.0",
"find-up": "^6.3.0",
"husky": "8.x",
"jest": "29.x",
"lint-staged": "15.x",
"nano-staged": "^0.8.0",
"prettier": "3.x",
"ts-jest": "^29.1.1",
"tsup": "7.x",
"typescript": "5.x"
},
"dependencies": {
"graphql": "16.x",
"lodash.memoize": "4.x"
},
"nano-staged": {
"*.{js,ts,json}": "prettier --write"
},
"files": [
"lib"
]
}