-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "@nejs/schemata",
"version": "4.0.0",
"description": "GraphQL IDL/Schemata String class to make working with GraphQL easier",
"exports": {
".": "./dist/index.js",
"./classes": "./dist/classes/index.js",
"./utils": "./dist/utils/index.js",
"./errors": "./dist/errors/index.js"
},
"repository": "https://github.com/nyteshade/ne-schemata",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"repl": "node repl.bootstrap.js",
"build": "rm -rf dist/* && babel src --out-dir dist -s both"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"SDL",
"IDL",
"AST",
"utility",
"GraphQLSchema",
"GraphQL"
],
"author": "Brielle Harrison",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-transform-flow-strip-types": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"babel-plugin-syntax-hermes-parser": "^0.23.1",
"eslint": "^9.11.1",
"flow-bin": "^0.247.0",
"graphql": "^16.9.0",
"htmlparser2": "^9.1.0",
"lodash": "^4.17.21",
"renderkid": "^3.0.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"peerDependencies": {
"graphql": "^16"
},
"dependencies": {
"@graphql-tools/utils": "^10.5.4",
"@nejs/basic-extensions": "^2.15.0",
"@nejs/extension": "^2.20.0",
"core-js": "^3.38.1",
"debug": "^4.3.7",
"debug-logger": "^0.4.1",
"deepmerge": "^4.3.1",
"ms": "^2.1.3",
"ne-tag-fns": "^0.7.0"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}