@eggjs/schedule 6.0.0-beta.34 → 6.0.0-beta.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,54 +1,32 @@
1
1
  {
2
2
  "name": "@eggjs/schedule",
3
- "version": "6.0.0-beta.34",
4
- "publishConfig": {
5
- "access": "public"
6
- },
7
- "engines": {
8
- "node": ">=22.18.0"
9
- },
3
+ "version": "6.0.0-beta.36",
10
4
  "description": "schedule plugin for egg, support corn job.",
11
- "repository": {
12
- "type": "git",
13
- "url": "https://github.com/eggjs/egg.git",
14
- "directory": "plugins/schedule"
15
- },
16
- "homepage": "https://github.com/eggjs/egg/tree/next/plugins/schedule",
17
- "bugs": {
18
- "url": "https://github.com/eggjs/egg/issues"
19
- },
20
5
  "keywords": [
6
+ "cron",
21
7
  "egg",
22
8
  "egg-plugin",
23
9
  "eggPlugin",
24
- "schedule",
25
- "cron"
10
+ "schedule"
26
11
  ],
27
- "dependencies": {
28
- "cron-parser": "^4.9.0",
29
- "humanize-ms": "^2.0.0",
30
- "is-type-of": "^2.2.0",
31
- "safe-timers": "^1.1.0",
32
- "utility": "^2.5.0",
33
- "@eggjs/utils": "5.0.0-beta.34"
34
- },
35
- "peerDependencies": {
36
- "egg": "4.1.0-beta.34"
37
- },
38
- "devDependencies": {
39
- "@types/safe-timers": "^1.1.2",
40
- "oxlint": "^1.24.0",
41
- "tsdown": "0.15.11",
42
- "typescript": "^5.9.3",
43
- "vitest": "4.0.5",
44
- "@eggjs/bin": "8.0.0-beta.34",
45
- "@eggjs/mock": "7.0.0-beta.34",
46
- "@eggjs/tsconfig": "3.1.0-beta.34",
47
- "egg": "4.1.0-beta.34"
12
+ "homepage": "https://github.com/eggjs/egg/tree/next/plugins/schedule",
13
+ "bugs": {
14
+ "url": "https://github.com/eggjs/egg/issues"
48
15
  },
49
- "author": "dead_horse",
50
16
  "license": "MIT",
17
+ "author": "dead_horse",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/eggjs/egg.git",
21
+ "directory": "plugins/schedule"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
51
26
  "type": "module",
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
52
30
  "exports": {
53
31
  ".": "./dist/index.js",
54
32
  "./agent": "./dist/agent.js",
@@ -68,18 +46,32 @@
68
46
  "./types": "./dist/types.js",
69
47
  "./package.json": "./package.json"
70
48
  },
71
- "files": [
72
- "dist"
73
- ],
74
- "types": "./dist/index.d.ts",
75
- "main": "./dist/index.js",
76
- "module": "./dist/index.js",
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "dependencies": {
53
+ "cron-parser": "^4.9.0",
54
+ "humanize-ms": "^2.0.0",
55
+ "is-type-of": "^2.2.0",
56
+ "safe-timers": "^1.1.0",
57
+ "utility": "^2.5.0",
58
+ "@eggjs/utils": "5.0.0-beta.36"
59
+ },
60
+ "devDependencies": {
61
+ "@types/safe-timers": "^1.1.2",
62
+ "typescript": "^5.9.3",
63
+ "@eggjs/mock": "7.0.0-beta.36",
64
+ "egg": "4.1.0-beta.36",
65
+ "@eggjs/tsconfig": "3.1.0-beta.36",
66
+ "@eggjs/bin": "8.0.0-beta.36"
67
+ },
68
+ "peerDependencies": {
69
+ "egg": "4.1.0-beta.36"
70
+ },
71
+ "engines": {
72
+ "node": ">=22.18.0"
73
+ },
77
74
  "scripts": {
78
- "build": "tsdown && rimraf dist *.tsbuildinfo && tsc -p tsconfig.build.json",
79
- "typecheck": "tsc --noEmit",
80
- "lint": "oxlint --type-aware",
81
- "lint:fix": "npm run lint -- --fix",
82
- "test": "npm run lint:fix && vitest run",
83
- "ci": "vitest run --coverage"
75
+ "typecheck": "tsgo --noEmit"
84
76
  }
85
77
  }