-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.64 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
{
"name": "purescript-graphql-client",
"version": "10.0.4",
"description": "A typesafe graphql client for purescript.",
"main": "codegen/schema/index.mjs",
"directories": {
"main": "./codegen/schema/index.mjs",
"test": "test"
},
"scripts": {
"test": "spago test && npm run test-codegen",
"test-codegen": "cd codegen/schema && spago test",
"should-fail-tests": "node ./run-should-fail-tests",
"bundle": "cd codegen/schema && spago bundle --bundle-type module --module GraphQL.Client.CodeGen.Js --outfile '../../gen-schema-bundled.mjs'",
"patch": "npm run bundle && gcam 'update bundle' --allow-empty && npm version patch && npm publish && pulp publish",
"npm-major-verson": "npm run bundle && gcam 'update bundle' --allow-empty && npm version major && npm publish",
"patch-old": "npm run bundle && gcam 'update bundle' --allow-empty && npm version patch && pulp version patch && npm publish && pulp publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OxfordAbstracts/purescript-graphql-client.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OxfordAbstracts/purescript-graphql-client/issues"
},
"homepage": "https://github.com/OxfordAbstracts/purescript-graphql-client#readme",
"dependencies": {
"@urql/core": "^1.16.2",
"graphql": "^16.5.0",
"graphql-ws": "^5.9.1",
"isomorphic-unfetch": "^3.1.0",
"isomorphic-ws": "^5.0.0",
"mkdirp": "1.0.4",
"rimraf": "3.0.2"
},
"devDependencies": {
"@apollo/client": "3.6",
"esbuild": "^0.14.51",
"exec-sh": "^0.4.0",
"glob": "^7.2.0",
"wonka": "^4.0.15"
}
}