-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 1.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@rjdellecese/confect",
"version": "0.0.21",
"description": "Use Effect with Convex!",
"repository": {
"type": "git",
"url": "https://github.com/rjdellecese/confect.git"
},
"bugs": {
"url": "https://github.com/rjdellecese/confect/issues"
},
"homepage": "https://rj-dellecese.gitbook.io/confect",
"sideEffects": false,
"type": "module",
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"exports": {
"./server": {
"import": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"require": {
"types": "./dist/server/index.d.cts",
"require": "./dist/server/index.cjs"
}
},
"./react": {
"import": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
},
"require": {
"types": "./dist/react/index.d.cts",
"require": "./dist/react/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"check-types": "pnpm build && attw --pack --profile=node16",
"fix": "biome check --write",
"lint": "biome ci --error-on-warnings",
"release": "pnpm build && changeset publish",
"start": "convex dev",
"test": "vitest --run --typecheck --coverage",
"test:watch": "vitest --typecheck --coverage"
},
"keywords": [
"effect",
"convex"
],
"author": "RJ Dellecese",
"license": "ISC",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.11",
"@changesets/config": "^3.0.5",
"@effect/platform-node": "0.67.1",
"@effect/vitest": "0.14.8",
"@swc/jest": "0.2.37",
"@tsconfig/strictest": "2.0.5",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "2.1.8",
"convex-test": "0.0.35",
"dotenv": "16.4.7",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vite": "5.1.8",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"peerDependencies": {
"@effect/platform": "^0.71.5",
"convex": "^1.17.4",
"effect": "^3.11.8"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}