-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.45 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "convex.do",
"version": "0.0.1",
"type": "module",
"description": "100% Convex API compatible package running on Cloudflare Workers with Durable Objects",
"license": "MIT",
"author": "convex.do",
"repository": {
"type": "git",
"url": "git+https://github.com/drivly/convex.do.git"
},
"homepage": "https://github.com/drivly/convex.do#readme",
"bugs": {
"url": "https://github.com/drivly/convex.do/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
},
"./values": {
"types": "./dist/values/index.d.ts",
"import": "./dist/values/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./sync": {
"types": "./dist/sync/index.d.ts",
"import": "./dist/sync/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "vitest --max-workers=4",
"test:coverage": "vitest run --max-workers=4 --coverage",
"test:watch": "vitest watch --max-workers=4",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write src",
"prepublishOnly": "npm run build"
},
"dependencies": {
"hono": "^4.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"jsdom": "^27.4.0",
"miniflare": "^3.20241205.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"wrangler": "^3.99.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"convex",
"cloudflare",
"workers",
"durable-objects",
"database",
"real-time",
"typescript"
]
}