-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
{
"name": "workers-dbms",
"version": "0.0.7",
"description": "Workers Database Management System for Durable Objects",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build-templates && tsup src/index.ts --format cjs,esm --external cloudflare:workers",
"build-templates": "node src/forms/templates/precompile.mjs templates src/forms/precompiled.mjs",
"format": "npx @biomejs/biome format --write",
"lint-biome": "npx @biomejs/biome lint --write"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cloudflare",
"worker",
"workers",
"serverless",
"cloudflare do",
"dosql",
"neon.tech",
"databases on-demand",
"cloudflare sql",
"workers sql",
"cf"
],
"author": "Gabriel Massadas",
"license": "MIT",
"homepage": "https://workers-dbms.massadas.com",
"repository": {
"type": "git",
"url": "git@github.com:G4brym/workers-dbms.git"
},
"bugs": {
"url": "https://github.com/G4brym/workers-dbms/issues"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@cloudflare/vitest-pool-workers": "^0.4.5",
"@cloudflare/workers-types": "^4.20240909.0",
"tsup": "^8.2.4",
"typescript": "^5.5.2",
"vitest": "1.5.0",
"wrangler": "^3.78.12"
},
"dependencies": {
"chanfana": "^2.0.4",
"hono": "^4.6.1",
"nunjucks": "^3.2.4",
"workers-qb": "^1.6.5",
"zod": "^3.23.8"
}
}