-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.97 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@rrulenet/cli",
"version": "0.1.0-beta.1",
"description": "Hybrid CLI for local recurring jobs and rrule.net cloud schedules.",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/rrulenet/cli#readme",
"bugs": {
"url": "https://github.com/rrulenet/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrulenet/cli.git"
},
"keywords": [
"rrule",
"recurrence",
"scheduler",
"schedule",
"cli",
"cron",
"temporal",
"automation"
],
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"bin",
"dist"
],
"bin": {
"rrulenet": "bin/run.js"
},
"oclif": {
"bin": "rrulenet",
"dirname": "rrulenet",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"cloud": {
"description": "Manage rrule.net cloud schedules"
},
"config": {
"description": "Manage rrulenet CLI configuration"
},
"import": {
"description": "Import schedules from other formats"
},
"local": {
"description": "Manage local recurring schedules"
}
}
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"test": "npm run build && NODE_OPTIONS=--disable-warning=ExperimentalWarning node --test test/**/*.test.js",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"dev": "node ./bin/dev.js",
"list": "npm run build && node ./bin/run.js list",
"local:list": "npm run build && node ./bin/run.js local list",
"cloud:list": "npm run build && node ./bin/run.js cloud list"
},
"dependencies": {
"@oclif/core": "^4.9.0",
"@js-temporal/polyfill": "^0.5.1",
"cli-table3": "^0.6.5",
"picocolors": "^1.1.1",
"rrule-temporal": "^1.5.1",
"yocto-spinner": "^1.1.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.0.0"
}
}