wabe 0.5.0
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/README.md +70 -0
- package/bunfig.toml +4 -0
- package/dist/generated/wabe.d.ts +1287 -0
- package/dist/index.d.ts +921 -0
- package/dist/index.js +108814 -0
- package/generated/schema.graphql +1236 -0
- package/generated/wabe.ts +1518 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wabe",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Your backend in minutes not days",
|
|
5
|
+
"homepage": "https://wabe.dev",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "coratgerl",
|
|
8
|
+
"url": "https://github.com/coratgerl"
|
|
9
|
+
},
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"keywords": ["backend", "wabe", "graphql", "baas"],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/palixir/wabe"
|
|
15
|
+
},
|
|
16
|
+
"main": "dist/index.js",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "bun generate:codegen && bun build --outdir dist $(pwd)/src/index.ts --target=node && bun generate:types",
|
|
19
|
+
"generate:types": "dts-bundle-generator -o dist/index.d.ts src/index.ts --no-check --external-imports=wobe",
|
|
20
|
+
"check": "tsc --project $(pwd)/tsconfig.json",
|
|
21
|
+
"lint": "biome lint . --no-errors-on-unmatched --config-path=../../",
|
|
22
|
+
"ci": "bun generate:codegen && bun check && bun lint $(pwd) && bun test src",
|
|
23
|
+
"format": "biome format --write .",
|
|
24
|
+
"dev": "bun generate:codegen && bun run --watch dev/index.ts",
|
|
25
|
+
"generate:codegen":"touch generated/wabe.ts && CODEGEN=true bun dev/index.ts"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@graphql-codegen/core": "4.0.2",
|
|
29
|
+
"@graphql-codegen/typescript": "4.0.1",
|
|
30
|
+
"@graphql-codegen/typescript-graphql-request": "6.2.0",
|
|
31
|
+
"@graphql-codegen/typescript-operations": "4.0.1",
|
|
32
|
+
"@graphql-tools/graphql-file-loader": "8.0.1",
|
|
33
|
+
"@graphql-tools/load": "8.0.2",
|
|
34
|
+
"argon2": "^0.41.1",
|
|
35
|
+
"jsonwebtoken": "9.0.2",
|
|
36
|
+
"mongodb": "6.3.0",
|
|
37
|
+
"wobe": "1.1.7",
|
|
38
|
+
"wobe-graphql-yoga": "1.2.5"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@parcel/watcher": "2.3.0",
|
|
42
|
+
"@types/bun": "1.1.5",
|
|
43
|
+
"@types/jsonwebtoken": "9.0.6",
|
|
44
|
+
"@types/uuid": "9.0.6",
|
|
45
|
+
"dts-bundle-generator": "9.5.1",
|
|
46
|
+
"get-port": "7.0.0",
|
|
47
|
+
"graphql-request": "6.1.0",
|
|
48
|
+
"uuid": "9.0.1",
|
|
49
|
+
"wait-on": "7.2.0",
|
|
50
|
+
"wabe-mongodb-launcher": "workspace:*",
|
|
51
|
+
"wabe-pluralize": "workspace:*"
|
|
52
|
+
}
|
|
53
|
+
}
|