-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 956 Bytes
/
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
{
"name": "@metaexplorer/wpgraphql-to-linkeddata",
"version": "1.0.0",
"description": "Converter from wpgraphql to schema.org linked data format in typescript",
"main": "schema-out/index.js",
"type": "module",
"repository": "https://github.com/shnydercom/wpgraphql-to-linkeddata.git",
"author": "Jonathan Schneider",
"license": "MIT",
"dependencies": {
"graphql": "^15.4.0",
"schema-dts": "^0.8.2"
},
"devDependencies": {
"typescript": "4.1.3",
"@graphql-codegen/cli": "1.20.0",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-operations": "1.17.13"
},
"scripts": {
"get-introspection": "set ENDPOINT=https://your-wordpress-blog.orlocalhost/graphql && yarn node .\\scripts\\get-introspection-json.js",
"gen-gql": "graphql-codegen --config codegen.yml",
"build": "tsc",
"try-query": "set ENDPOINT=https://shnyder.com/graphql && yarn node .\\scripts\\try-query.js"
}
}