@lppx/taskmgr 0.0.0

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.
Files changed (45) hide show
  1. package/README.md +340 -0
  2. package/TaskScheduler.2.12.2/.signature.p7s +0 -0
  3. package/TaskScheduler.2.12.2/TaskScheduler.2.12.2.nupkg +0 -0
  4. package/TaskScheduler.2.12.2/TaskService.md +72 -0
  5. package/TaskScheduler.2.12.2/lib/net45/Microsoft.Win32.TaskScheduler.dll +0 -0
  6. package/TaskScheduler.2.12.2/lib/net45/Microsoft.Win32.TaskScheduler.xml +7855 -0
  7. package/TaskScheduler.2.12.2/lib/net45/de/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  8. package/TaskScheduler.2.12.2/lib/net45/es/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  9. package/TaskScheduler.2.12.2/lib/net45/fr/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  10. package/TaskScheduler.2.12.2/lib/net45/it/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  11. package/TaskScheduler.2.12.2/lib/net45/ja/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  12. package/TaskScheduler.2.12.2/lib/net45/pl/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  13. package/TaskScheduler.2.12.2/lib/net45/ru/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  14. package/TaskScheduler.2.12.2/lib/net45/sv/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  15. package/TaskScheduler.2.12.2/lib/net45/tr/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  16. package/TaskScheduler.2.12.2/lib/net45/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  17. package/TaskScheduler.2.12.2/lib/net45/zh-Hant/Microsoft.Win32.TaskScheduler.resources.dll +0 -0
  18. package/TaskScheduler.2.12.2/tsnew48.png +0 -0
  19. package/Templates//344/274/221/347/234/240/350/204/232/346/234/254.ps1 +3 -0
  20. package/Templates//345/200/222/350/256/241/346/227/266/344/274/221/347/234/240/350/204/232/346/234/254.ps1 +68 -0
  21. package/Templates//345/200/222/350/256/241/346/227/266/345/205/263/346/234/272/350/204/232/346/234/254.ps1 +66 -0
  22. package/bin/dev.cmd +3 -0
  23. package/bin/dev.js +5 -0
  24. package/bin/run.cmd +3 -0
  25. package/bin/run.js +5 -0
  26. package/dist/commands/scripts/add.d.ts +9 -0
  27. package/dist/commands/scripts/add.js +28 -0
  28. package/dist/commands/scripts/list.d.ts +6 -0
  29. package/dist/commands/scripts/list.js +25 -0
  30. package/dist/commands/scripts/open.d.ts +6 -0
  31. package/dist/commands/scripts/open.js +19 -0
  32. package/dist/commands/tsk/add.d.ts +20 -0
  33. package/dist/commands/tsk/add.js +70 -0
  34. package/dist/commands/tsk/del.d.ts +9 -0
  35. package/dist/commands/tsk/del.js +14 -0
  36. package/dist/commands/tsk/list.d.ts +9 -0
  37. package/dist/commands/tsk/list.js +46 -0
  38. package/dist/hooks/init.d.ts +3 -0
  39. package/dist/hooks/init.js +13 -0
  40. package/dist/index.d.ts +1 -0
  41. package/dist/index.js +1 -0
  42. package/dist/lib/task-scheduler.d.ts +37 -0
  43. package/dist/lib/task-scheduler.js +371 -0
  44. package/oclif.manifest.json +250 -0
  45. package/package.json +92 -0
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@lppx/taskmgr",
3
+ "description": "定时任务管理器",
4
+ "version": "0.0.0",
5
+ "author": "lppx",
6
+ "bin": {
7
+ "tm": "./bin/run.js"
8
+ },
9
+ "bugs": "https://github.com/lipanpan-hub/taskmgr/issues",
10
+ "dependencies": {
11
+ "@oclif/core": "^4",
12
+ "@oclif/plugin-autocomplete": "^3.2.40",
13
+ "@oclif/plugin-help": "^6",
14
+ "@oclif/plugin-not-found": "^3.2.74",
15
+ "@oclif/plugin-version": "^2.2.37",
16
+ "@oclif/plugin-warn-if-update-available": "^3.1.55",
17
+ "edge-js": "^25.0.1"
18
+ },
19
+ "devDependencies": {
20
+ "@eslint/compat": "^1",
21
+ "@oclif/prettier-config": "^0.2.1",
22
+ "@oclif/test": "^4",
23
+ "@types/chai": "^4",
24
+ "@types/mocha": "^10",
25
+ "@types/node": "^18",
26
+ "chai": "^4",
27
+ "eslint": "^9",
28
+ "eslint-config-oclif": "^6",
29
+ "eslint-config-prettier": "^10",
30
+ "mocha": "^10",
31
+ "oclif": "^4",
32
+ "shx": "^0.3.3",
33
+ "ts-node": "^10",
34
+ "typescript": "^5"
35
+ },
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "files": [
40
+ "./bin",
41
+ "./dist",
42
+ "./Templates",
43
+ "./TaskScheduler.2.12.2",
44
+ "./oclif.manifest.json"
45
+ ],
46
+ "homepage": "https://github.com/lipanpan-hub/taskmgr",
47
+ "keywords": [
48
+ "oclif"
49
+ ],
50
+ "license": "BSL",
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "main": "dist/index.js",
55
+ "type": "module",
56
+ "oclif": {
57
+ "bin": "tm",
58
+ "commands": "./dist/commands",
59
+ "hooks": {
60
+ "init": "./dist/hooks/init"
61
+ },
62
+ "plugins": [
63
+ "@oclif/plugin-help",
64
+ "@oclif/plugin-autocomplete",
65
+ "@oclif/plugin-not-found",
66
+ "@oclif/plugin-warn-if-update-available",
67
+ "@oclif/plugin-version"
68
+ ],
69
+ "topicSeparator": " ",
70
+ "topics": {
71
+ "tsk": {
72
+ "description": "定时任务管理"
73
+ },
74
+ "scripts": {
75
+ "description": "脚本管理"
76
+ }
77
+ }
78
+ },
79
+ "repository": "lipanpan-hub/taskmgr",
80
+ "scripts": {
81
+ "build": "shx rm -rf dist && tsc -b",
82
+ "lint": "eslint",
83
+ "pack:tarballs": "oclif pack tarballs",
84
+ "pack:win": "oclif pack win",
85
+ "postpack": "shx rm -f oclif.manifest.json",
86
+ "posttest": "npm run lint",
87
+ "prepack": "oclif manifest && oclif readme",
88
+ "test": "mocha --forbid-only \"test/**/*.test.ts\"",
89
+ "version": "oclif readme && git add README.md"
90
+ },
91
+ "types": "dist/index.d.ts"
92
+ }