-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.08 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "durable-scheduler",
"version": "0.0.6",
"main": "./dist/commonjs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/threepointone/durable-scheduler.git"
},
"scripts": {
"build": "tshy",
"check": "npm run lint; npm run typecheck; npm run test:ci",
"typecheck": "(cd tests; tsc); (cd src; tsc); (cd example; tsc)",
"test": "(cd tests; vitest)",
"test:ci": "(cd tests; vitest --no-watch)",
"start": "(cd example; concurrently \"wrangler dev\" \"vite dev\" --kill-others)",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"files": [
"LICENSE",
"dist",
"README.md"
],
"keywords": [
"cloudflare",
"durable-objects",
"scheduler",
"cron",
"durable-scheduler"
],
"author": "Sunil Pai <[email protected]>",
"license": "MIT",
"description": "Sophisticated scheduler for durable tasks, built on Durable Object Alarms.",
"devDependencies": {
"@ai-sdk/openai": "^1.0.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@cloudflare/vitest-pool-workers": "^0.5.34",
"@cloudflare/workers-types": "^4.20241205.0",
"@eslint/js": "^9.16.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0-beta.6",
"@tanstack/react-query": "^5.62.3",
"@types/bun": "^1.1.14",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"ai": "^4.0.13",
"concurrently": "^9.1.0",
"cronstrue": "^2.52.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"mathjs": "^14.0.1",
"mimetext": "^3.0.24",
"partyserver": "^0.0.57",
"partysocket": "^1.0.2",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0-beta.6",
"tshy": "^3.0.2",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "2.1.8",
"wrangler": "^3.93.0",
"zod": "^3.23.8"
},
"overrides": {
"esbuild": "0.24.0"
},
"dependencies": {
"better-auth": "^1.0.14",
"cron-parser": "^4.9.0"
},
"tshy": {
"project": "./src/tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}