|
| 1 | +{ |
| 2 | + "name": "@cedarjs/gqlorm", |
| 3 | + "version": "2.6.0", |
| 4 | + "repository": { |
| 5 | + "type": "git", |
| 6 | + "url": "git+https://github.com/cedarjs/cedar.git", |
| 7 | + "directory": "packages/gqlorm" |
| 8 | + }, |
| 9 | + "license": "MIT", |
| 10 | + "type": "module", |
| 11 | + "exports": { |
| 12 | + ".": { |
| 13 | + "import": { |
| 14 | + "types": "./dist/queryBuilder.d.ts", |
| 15 | + "default": "./dist/queryBuilder.js" |
| 16 | + }, |
| 17 | + "require": { |
| 18 | + "types": "./dist/cjs/queryBuilder.d.ts", |
| 19 | + "default": "./dist/cjs/queryBuilder.js" |
| 20 | + } |
| 21 | + }, |
| 22 | + "./queryBuilder": { |
| 23 | + "import": { |
| 24 | + "types": "./dist/queryBuilder.d.ts", |
| 25 | + "default": "./dist/queryBuilder.js" |
| 26 | + }, |
| 27 | + "require": { |
| 28 | + "types": "./dist/cjs/queryBuilder.d.ts", |
| 29 | + "default": "./dist/cjs/queryBuilder.js" |
| 30 | + } |
| 31 | + }, |
| 32 | + "./react/useLiveQuery": { |
| 33 | + "import": { |
| 34 | + "types": "./dist/react/useLiveQuery.d.ts", |
| 35 | + "default": "./dist/react/useLiveQuery.js" |
| 36 | + }, |
| 37 | + "require": { |
| 38 | + "types": "./dist/cjs/react/useLiveQuery.d.ts", |
| 39 | + "default": "./dist/cjs/react/useLiveQuery.js" |
| 40 | + } |
| 41 | + }, |
| 42 | + "./parser/queryParser": { |
| 43 | + "import": { |
| 44 | + "types": "./dist/parser/queryParser.d.ts", |
| 45 | + "default": "./dist/parser/queryParser.js" |
| 46 | + }, |
| 47 | + "require": { |
| 48 | + "types": "./dist/cjs/parser/queryParser.d.ts", |
| 49 | + "default": "./dist/cjs/parser/queryParser.js" |
| 50 | + } |
| 51 | + }, |
| 52 | + "./generator/graphqlGenerator": { |
| 53 | + "import": { |
| 54 | + "types": "./dist/generator/graphqlGenerator.d.ts", |
| 55 | + "default": "./dist/generator/graphqlGenerator.js" |
| 56 | + }, |
| 57 | + "require": { |
| 58 | + "types": "./dist/cjs/generator/graphqlGenerator.d.ts", |
| 59 | + "default": "./dist/cjs/generator/graphqlGenerator.js" |
| 60 | + } |
| 61 | + }, |
| 62 | + "./live/types": { |
| 63 | + "import": { |
| 64 | + "types": "./dist/live/types.d.ts", |
| 65 | + "default": "./dist/live/types.js" |
| 66 | + }, |
| 67 | + "require": { |
| 68 | + "types": "./dist/cjs/live/types.d.ts", |
| 69 | + "default": "./dist/cjs/live/types.js" |
| 70 | + } |
| 71 | + }, |
| 72 | + "./types/ast": { |
| 73 | + "import": { |
| 74 | + "types": "./dist/types/ast.d.ts", |
| 75 | + "default": "./dist/types/ast.js" |
| 76 | + }, |
| 77 | + "require": { |
| 78 | + "types": "./dist/cjs/types/ast.d.ts", |
| 79 | + "default": "./dist/cjs/types/ast.js" |
| 80 | + } |
| 81 | + }, |
| 82 | + "./types/orm": { |
| 83 | + "import": { |
| 84 | + "types": "./dist/types/orm.d.ts", |
| 85 | + "default": "./dist/types/orm.js" |
| 86 | + }, |
| 87 | + "require": { |
| 88 | + "types": "./dist/cjs/types/orm.d.ts", |
| 89 | + "default": "./dist/cjs/types/orm.js" |
| 90 | + } |
| 91 | + }, |
| 92 | + "./types/schema": { |
| 93 | + "import": { |
| 94 | + "types": "./dist/types/schema.d.ts", |
| 95 | + "default": "./dist/types/schema.js" |
| 96 | + }, |
| 97 | + "require": { |
| 98 | + "types": "./dist/cjs/types/schema.d.ts", |
| 99 | + "default": "./dist/cjs/types/schema.js" |
| 100 | + } |
| 101 | + }, |
| 102 | + "./types/typeUtils": { |
| 103 | + "import": { |
| 104 | + "types": "./dist/types/typeUtils.d.ts", |
| 105 | + "default": "./dist/types/typeUtils.js" |
| 106 | + }, |
| 107 | + "require": { |
| 108 | + "types": "./dist/cjs/types/typeUtils.d.ts", |
| 109 | + "default": "./dist/cjs/types/typeUtils.js" |
| 110 | + } |
| 111 | + } |
| 112 | + }, |
| 113 | + "main": "dist/queryBuilder.js", |
| 114 | + "types": "dist/queryBuilder.d.ts", |
| 115 | + "files": [ |
| 116 | + "dist" |
| 117 | + ], |
| 118 | + "scripts": { |
| 119 | + "build": "tsx ./build.ts", |
| 120 | + "build:pack": "yarn pack -o cedarjs-gqlorm.tgz", |
| 121 | + "build:types": "tsc --build --verbose tsconfig.build.json", |
| 122 | + "build:types-cjs": "tsc --build --verbose tsconfig.cjs.json", |
| 123 | + "build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx\" --ignore dist --exec \"yarn build\"", |
| 124 | + "check:attw": "tsx ./attw.ts", |
| 125 | + "check:package": "concurrently npm:check:attw yarn publint", |
| 126 | + "prepublishOnly": "NODE_ENV=production yarn build", |
| 127 | + "test": "vitest run", |
| 128 | + "test:watch": "vitest watch" |
| 129 | + }, |
| 130 | + "dependencies": { |
| 131 | + "@babel/runtime-corejs3": "7.29.0", |
| 132 | + "@cedarjs/auth": "workspace:*", |
| 133 | + "@cedarjs/server-store": "workspace:*", |
| 134 | + "@cedarjs/web": "workspace:*", |
| 135 | + "core-js": "3.48.0", |
| 136 | + "graphql": "16.12.0", |
| 137 | + "react": "19.2.3", |
| 138 | + "react-dom": "19.2.3", |
| 139 | + "react-server-dom-webpack": "19.2.4" |
| 140 | + }, |
| 141 | + "devDependencies": { |
| 142 | + "@arethetypeswrong/cli": "0.18.2", |
| 143 | + "@babel/cli": "7.28.6", |
| 144 | + "@babel/core": "^7.26.10", |
| 145 | + "@cedarjs/framework-tools": "workspace:*", |
| 146 | + "@testing-library/jest-dom": "6.9.1", |
| 147 | + "@types/react": "^18.2.55", |
| 148 | + "@types/react-dom": "^18.2.19", |
| 149 | + "concurrently": "9.2.1", |
| 150 | + "publint": "0.3.17", |
| 151 | + "tstyche": "5.0.2", |
| 152 | + "tsx": "4.21.0", |
| 153 | + "typescript": "5.9.3", |
| 154 | + "vitest": "3.2.4" |
| 155 | + }, |
| 156 | + "peerDependencies": { |
| 157 | + "react": "19.2.3", |
| 158 | + "react-dom": "19.2.3" |
| 159 | + }, |
| 160 | + "publishConfig": { |
| 161 | + "access": "public" |
| 162 | + }, |
| 163 | + "gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1" |
| 164 | +} |
0 commit comments