fraiseql 2.1.1

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.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "fraiseql",
3
+ "version": "2.1.1",
4
+ "description": "FraiseQL v2 - Compiled GraphQL execution engine (schema authoring + HTTP client)",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "build:tsc": "tsc",
21
+ "watch": "tsc --watch",
22
+ "typecheck": "tsc --strict --noEmit",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:coverage": "vitest run --coverage",
26
+ "lint": "eslint src",
27
+ "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
28
+ "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
29
+ "example:basic": "tsx examples/basic_schema.ts",
30
+ "example:analytics": "tsx examples/analytics_schema.ts"
31
+ },
32
+ "keywords": [
33
+ "graphql",
34
+ "database",
35
+ "sql",
36
+ "compiler",
37
+ "schema",
38
+ "http-client",
39
+ "ai",
40
+ "langchain",
41
+ "mastra"
42
+ ],
43
+ "author": "FraiseQL Team",
44
+ "license": "MIT",
45
+ "dependencies": {
46
+ "zod": "^3.22.0"
47
+ },
48
+ "peerDependencies": {
49
+ "ai": "^3.0.0",
50
+ "@langchain/core": "^0.1.0",
51
+ "@mastra/core": "^0.1.0"
52
+ },
53
+ "peerDependenciesMeta": {
54
+ "ai": {
55
+ "optional": true
56
+ },
57
+ "@langchain/core": {
58
+ "optional": true
59
+ },
60
+ "@mastra/core": {
61
+ "optional": true
62
+ }
63
+ },
64
+ "devDependencies": {
65
+ "@types/node": "^20.0.0",
66
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
67
+ "@typescript-eslint/parser": "^8.0.0",
68
+ "ai": "^4.0.0",
69
+ "@langchain/core": "^0.3.0",
70
+ "@mastra/core": "^0.9.0",
71
+ "eslint": "^9.0.0",
72
+ "msw": "^2.0.0",
73
+ "prettier": "^3.0.0",
74
+ "tsup": "^8.0.0",
75
+ "tsx": "^4.0.0",
76
+ "typescript": "^5.3.0",
77
+ "vitest": "^2.0.0"
78
+ },
79
+ "engines": {
80
+ "node": ">=18.0.0"
81
+ }
82
+ }