convex-helpers
Version:
A collection of useful code to complement the official convex package.
76 lines (75 loc) • 2.17 kB
JSON
{
"name": "convex-helpers",
"version": "0.1.25",
"description": "A collection of useful code to complement the official convex package.",
"exports": {
".": "./dist/index.js",
"./react": "./dist/react/index.js",
"./react*": "./dist/react*",
"./react/sessions": "./dist/react/sessions.js",
"./server": "./dist/server/index.js",
"./server*": "./dist/server*",
"./server/customFunctions": "./dist/server/customFunctions.js",
"./server/filter": "./dist/server/filter.js",
"./server/hono": "./dist/server/hono.js",
"./server/middlewareUtils": "./dist/server/middlewareUtils.js",
"./server/rowLevelSecurity": "./dist/server/rowLevelSecurity.js",
"./server/relationships": "./dist/server/relationships.js",
"./server/sessions": "./dist/server/sessions.js",
"./server/zod": "./dist/server/zod.js",
"./testing": "./dist/testing.js",
"./validators": "./dist/validators.js"
},
"files": [
"dist",
"index.ts",
"react",
"server",
"testing.ts",
"validators.ts"
],
"scripts": {
"build": "tsc",
"prebuild": "npm run test",
"test": "tsc --project tsconfig.test.json",
"clean": "rm -rf dist",
"watch": "chokidar '*.ts' 'server/*.ts' 'react/*.ts' 'tsconfig.json' 'package.json' -c 'npm run build' --initial"
},
"repository": {
"type": "git",
"url": "git+https://github.com/get-convex/convex-helpers.git",
"directory": "packages/convex-helpers"
},
"keywords": [
"convex",
"database",
"react"
],
"author": "Ian Macartney <ian@convex.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/get-convex/convex-helpers/issues"
},
"homepage": "https://github.com/get-convex/convex-helpers/tree/main/packages/convex-helpers/README.md",
"peerDependencies": {
"convex": "^1.10.0",
"hono": "^4.0.5",
"react": "^17.0.2 || ^18.0.0",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"hono": {
"optional": true
},
"react": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"typescript": "~5.3"
}
}