-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.65 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
{
"name": "kuron",
"version": "0.0.3",
"description": "A lightweight framework for Cloudflare Workers scheduled jobs with a Hono-inspired API.",
"keywords": [
"cloudflare",
"workers",
"cron",
"scheduled",
"jobs",
"framework",
"typescript"
],
"homepage": "https://kuron.js.org",
"bugs": {
"url": "https://github.com/AustinZhu/kuron/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AustinZhu/kuron.git"
},
"author": "Austin Zhu",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"check": "biome check --write",
"dev": "tsc --watch",
"format": "biome format --write",
"lint": "biome lint --write",
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm run test",
"test": "vitest run",
"test:ci": "CI=1 vitest run --coverage",
"test:coverage": "vitest run --coverage",
"test:snapshot": "vitest run --update",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@cloudflare/workers-types": "^4.20251011.0",
"@types/node": "^24.8.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}