convex-verify 0.1.1 → 1.0.5

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 (1) hide show
  1. package/package.json +86 -81
package/package.json CHANGED
@@ -1,82 +1,87 @@
1
1
  {
2
- "name": "convex-verify",
3
- "version": "0.1.1",
4
- "description": "Type-safe verification and validation for Convex database operations",
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
- "./core": {
15
- "types": "./dist/core/index.d.ts",
16
- "import": "./dist/core/index.mjs",
17
- "require": "./dist/core/index.js"
18
- },
19
- "./transforms": {
20
- "types": "./dist/transforms/index.d.ts",
21
- "import": "./dist/transforms/index.mjs",
22
- "require": "./dist/transforms/index.js"
23
- },
24
- "./configs": {
25
- "types": "./dist/configs/index.d.ts",
26
- "import": "./dist/configs/index.mjs",
27
- "require": "./dist/configs/index.js"
28
- },
29
- "./plugins": {
30
- "types": "./dist/plugins/index.d.ts",
31
- "import": "./dist/plugins/index.mjs",
32
- "require": "./dist/plugins/index.js"
33
- },
34
- "./utils": {
35
- "types": "./dist/utils/index.d.ts",
36
- "import": "./dist/utils/index.mjs",
37
- "require": "./dist/utils/index.js"
38
- }
39
- },
40
- "files": [
41
- "dist",
42
- "README.md",
43
- "LICENSE"
44
- ],
45
- "peerDependencies": {
46
- "convex": ">=1.31.3"
47
- },
48
- "devDependencies": {
49
- "@edge-runtime/vm": "^5.0.0",
50
- "@vitest/coverage-v8": "4.0.17",
51
- "convex": "^1.31.3",
52
- "convex-test": "^0.0.41",
53
- "tsup": "^8.5.1",
54
- "typescript": "~5.6.3",
55
- "vitest": "^4.0.17"
56
- },
57
- "keywords": [
58
- "convex",
59
- "validation",
60
- "verification",
61
- "database",
62
- "typescript"
63
- ],
64
- "license": "MIT",
65
- "repository": {
66
- "type": "git",
67
- "url": "https://github.com/YOUR_USERNAME/convex-verify"
68
- },
69
- "author": "",
70
- "bugs": {
71
- "url": "https://github.com/YOUR_USERNAME/convex-verify/issues"
72
- },
73
- "homepage": "https://github.com/YOUR_USERNAME/convex-verify#readme",
74
- "scripts": {
75
- "build": "tsup",
76
- "dev": "tsup --watch --dts --sourcemap",
77
- "typecheck": "tsc --noEmit",
78
- "test": "vitest",
79
- "test:once": "vitest run",
80
- "test:coverage": "vitest run --coverage"
81
- }
82
- }
2
+ "name": "convex-verify",
3
+ "version": "1.0.5",
4
+ "description": "Type-safe verification and validation for Convex database operations",
5
+ "packageManager": "pnpm@9.10.0",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./core": {
16
+ "types": "./dist/core/index.d.ts",
17
+ "import": "./dist/core/index.mjs",
18
+ "require": "./dist/core/index.js"
19
+ },
20
+ "./transforms": {
21
+ "types": "./dist/transforms/index.d.ts",
22
+ "import": "./dist/transforms/index.mjs",
23
+ "require": "./dist/transforms/index.js"
24
+ },
25
+ "./configs": {
26
+ "types": "./dist/configs/index.d.ts",
27
+ "import": "./dist/configs/index.mjs",
28
+ "require": "./dist/configs/index.js"
29
+ },
30
+ "./plugins": {
31
+ "types": "./dist/plugins/index.d.ts",
32
+ "import": "./dist/plugins/index.mjs",
33
+ "require": "./dist/plugins/index.js"
34
+ },
35
+ "./utils": {
36
+ "types": "./dist/utils/index.d.ts",
37
+ "import": "./dist/utils/index.mjs",
38
+ "require": "./dist/utils/index.js"
39
+ }
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "scripts": {
47
+ "build": "tsup",
48
+ "dev": "tsup --watch --dts --sourcemap",
49
+ "typecheck": "tsc --noEmit",
50
+ "test": "vitest",
51
+ "test:once": "vitest run",
52
+ "test:coverage": "vitest run --coverage",
53
+ "prepublishOnly": "npm run build"
54
+ },
55
+ "peerDependencies": {
56
+ "convex": ">=1.31.3"
57
+ },
58
+ "devDependencies": {
59
+ "@edge-runtime/vm": "^5.0.0",
60
+ "@semantic-release/changelog": "^6.0.3",
61
+ "@semantic-release/git": "^10.0.1",
62
+ "@vitest/coverage-v8": "4.0.17",
63
+ "convex": "^1.31.3",
64
+ "convex-test": "^0.0.41",
65
+ "semantic-release": "^25.0.2",
66
+ "tsup": "^8.5.1",
67
+ "typescript": "~5.6.3",
68
+ "vitest": "^4.0.17"
69
+ },
70
+ "keywords": [
71
+ "convex",
72
+ "validation",
73
+ "verification",
74
+ "database",
75
+ "typescript"
76
+ ],
77
+ "license": "MIT",
78
+ "repository": {
79
+ "type": "git",
80
+ "url": "git+https://github.com/natedunn/convex-verify.git"
81
+ },
82
+ "author": "",
83
+ "bugs": {
84
+ "url": "https://github.com/natedunn/convex-verify/issues"
85
+ },
86
+ "homepage": "https://github.com/natedunn/convex-verify#readme"
87
+ }