-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.01 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": "durabcast",
"version": "0.2.2",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./helpers/upgrade": {
"import": {
"types": "./dist/helpers/upgrade.d.ts",
"default": "./dist/helpers/upgrade.js"
},
"require": {
"types": "./dist/helpers/upgrade.d.cts",
"default": "./dist/helpers/upgrade.cjs"
}
},
"./helpers/client": {
"import": {
"types": "./dist/helpers/client.d.ts",
"default": "./dist/helpers/client.js"
},
"require": {
"types": "./dist/helpers/client.d.cts",
"default": "./dist/helpers/client.cjs"
}
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"private": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/napolab/durabcast.git"
},
"bugs": {
"url": "https://github.com/napolab/durabcast/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.7",
"@cloudflare/vitest-pool-workers": "^0.5.18",
"@cloudflare/workers-types": "^4.20240529.0",
"hono": "^4.6.8",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vitest": "2.1.3",
"wrangler": "^3.67.1"
},
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"lint": "biome check",
"fmt": "biome check --write",
"typecheck": "tsc --noEmit",
"build": "tsup",
"test": "vitest --passWithNoTests",
"release": "changeset publish"
},
"peerDependencies": {
"hono": ">=4.3.0"
},
"dependencies": {
"@hono/zod-validator": "^0.4.1",
"zod": "^3.23.8"
},
"packageManager": "pnpm@9.12.1"
}