@ctx-core/graphql-client 7.4.292 → 7.4.293

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +61 -60
  2. package/License.md +0 -13
package/package.json CHANGED
@@ -1,61 +1,62 @@
1
1
  {
2
- "name": "@ctx-core/graphql-client",
3
- "version": "7.4.292",
4
- "description": "ctx-core graphql-client",
5
- "keywords": [
6
- "ctx-core",
7
- "google"
8
- ],
9
- "homepage": "https://github.com/ctx-core/graphql-client#readme",
10
- "bugs": {
11
- "url": "https://github.com/ctx-core/graphql-client/issues"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/ctx-core/graphql-client.git"
16
- },
17
- "license": "Apache-2.0",
18
- "author": {
19
- "name": "Brian Takita",
20
- "url": "https://briantakita.me",
21
- "email": "info+ctx-core-graphql-client@briantakita.me"
22
- },
23
- "type": "module",
24
- "files": [
25
- "*.d.ts",
26
- "*.js",
27
- "*.json",
28
- "./_types",
29
- "./graphql_fetch",
30
- "./graphql_port_txt",
31
- "./graphql_url"
32
- ],
33
- "types": "./index.d.ts",
34
- "exports": {
35
- ".": "./index.js",
36
- "./package.json": "./package.json"
37
- },
38
- "dependencies": {
39
- "ctx-core": "*"
40
- },
41
- "devDependencies": {
42
- "@types/node": "^25.3.3",
43
- "c8": "^11.0.0",
44
- "tsx": "^4.21.0",
45
- "typescript": "next",
46
- "uvu": "^0.5.6"
47
- },
48
- "publishConfig": {
49
- "access": "public"
50
- },
51
- "sideEffects": false,
52
- "scripts": {
53
- "build": ":",
54
- "clean": ":",
55
- "exec": "$@",
56
- "test": "pnpm run /^test:/",
57
- "test:types": "tsc --noEmit",
58
- "test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
59
- "disable:test:unit:coverage": "c8 pnpm test:unit"
60
- }
61
- }
2
+ "name": "@ctx-core/graphql-client",
3
+ "version": "7.4.293",
4
+ "description": "ctx-core graphql-client",
5
+ "keywords": [
6
+ "ctx-core",
7
+ "google"
8
+ ],
9
+ "homepage": "https://github.com/ctx-core/graphql-client#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/ctx-core/graphql-client/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ctx-core/graphql-client.git"
16
+ },
17
+ "license": "Apache-2.0",
18
+ "author": {
19
+ "name": "Brian Takita",
20
+ "url": "https://briantakita.me",
21
+ "email": "info+ctx-core-graphql-client@briantakita.me"
22
+ },
23
+ "type": "module",
24
+ "files": [
25
+ "*.d.ts",
26
+ "*.js",
27
+ "*.json",
28
+ "./_types",
29
+ "./graphql_fetch",
30
+ "./graphql_port_txt",
31
+ "./graphql_url"
32
+ ],
33
+ "types": "./index.d.ts",
34
+ "exports": {
35
+ ".": "./index.js",
36
+ "./package.json": "./package.json"
37
+ },
38
+ "scripts": {
39
+ "build": ":",
40
+ "clean": ":",
41
+ "exec": "$@",
42
+ "prepublishOnly": "bun run clean && bun run build && bun run test && publint && attw --pack --ignore-rules cjs-resolves-to-esm",
43
+ "test": "bun run test:types && bun run test:unit",
44
+ "test:types": "tsc --noEmit",
45
+ "test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
46
+ "disable:test:unit:coverage": "c8 bun run test:unit"
47
+ },
48
+ "dependencies": {
49
+ "ctx-core": "*"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^25.3.3",
53
+ "c8": "^11.0.0",
54
+ "tsx": "^4.21.0",
55
+ "typescript": "next",
56
+ "uvu": "^0.5.6"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "sideEffects": false
62
+ }
package/License.md DELETED
@@ -1,13 +0,0 @@
1
- Copyright 2016 Brian Takita
2
-
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
6
-
7
- http://www.apache.org/licenses/LICENSE-2.0
8
-
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.