package-lock.json 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. {
  2. "name": "task-manager-mcp-server",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "task-manager-mcp-server",
  9. "version": "1.0.0",
  10. "license": "MIT",
  11. "dependencies": {
  12. "@modelcontextprotocol/sdk": "^0.5.0",
  13. "dotenv": "^16.3.1",
  14. "pg": "^8.11.3"
  15. },
  16. "engines": {
  17. "node": ">=18.0.0"
  18. }
  19. },
  20. "node_modules/@modelcontextprotocol/sdk": {
  21. "version": "0.5.0",
  22. "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-0.5.0.tgz",
  23. "integrity": "sha512-RXgulUX6ewvxjAG0kOpLMEdXXWkzWgaoCGaA2CwNW7cQCIphjpJhjpHSiaPdVCnisjRF/0Cm9KWHUuIoeiAblQ==",
  24. "license": "MIT",
  25. "dependencies": {
  26. "content-type": "^1.0.5",
  27. "raw-body": "^3.0.0",
  28. "zod": "^3.23.8"
  29. }
  30. },
  31. "node_modules/bytes": {
  32. "version": "3.1.2",
  33. "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
  34. "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
  35. "license": "MIT",
  36. "engines": {
  37. "node": ">= 0.8"
  38. }
  39. },
  40. "node_modules/content-type": {
  41. "version": "1.0.5",
  42. "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
  43. "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
  44. "license": "MIT",
  45. "engines": {
  46. "node": ">= 0.6"
  47. }
  48. },
  49. "node_modules/depd": {
  50. "version": "2.0.0",
  51. "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
  52. "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
  53. "license": "MIT",
  54. "engines": {
  55. "node": ">= 0.8"
  56. }
  57. },
  58. "node_modules/dotenv": {
  59. "version": "16.6.1",
  60. "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
  61. "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
  62. "license": "BSD-2-Clause",
  63. "engines": {
  64. "node": ">=12"
  65. },
  66. "funding": {
  67. "url": "https://dotenvx.com"
  68. }
  69. },
  70. "node_modules/http-errors": {
  71. "version": "2.0.0",
  72. "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
  73. "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
  74. "license": "MIT",
  75. "dependencies": {
  76. "depd": "2.0.0",
  77. "inherits": "2.0.4",
  78. "setprototypeof": "1.2.0",
  79. "statuses": "2.0.1",
  80. "toidentifier": "1.0.1"
  81. },
  82. "engines": {
  83. "node": ">= 0.8"
  84. }
  85. },
  86. "node_modules/iconv-lite": {
  87. "version": "0.7.0",
  88. "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
  89. "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
  90. "license": "MIT",
  91. "dependencies": {
  92. "safer-buffer": ">= 2.1.2 < 3.0.0"
  93. },
  94. "engines": {
  95. "node": ">=0.10.0"
  96. },
  97. "funding": {
  98. "type": "opencollective",
  99. "url": "https://opencollective.com/express"
  100. }
  101. },
  102. "node_modules/inherits": {
  103. "version": "2.0.4",
  104. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  105. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  106. "license": "ISC"
  107. },
  108. "node_modules/pg": {
  109. "version": "8.16.3",
  110. "resolved": "https://registry.npmjs.org/pg/-/pg-8.16.3.tgz",
  111. "integrity": "sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==",
  112. "license": "MIT",
  113. "dependencies": {
  114. "pg-connection-string": "^2.9.1",
  115. "pg-pool": "^3.10.1",
  116. "pg-protocol": "^1.10.3",
  117. "pg-types": "2.2.0",
  118. "pgpass": "1.0.5"
  119. },
  120. "engines": {
  121. "node": ">= 16.0.0"
  122. },
  123. "optionalDependencies": {
  124. "pg-cloudflare": "^1.2.7"
  125. },
  126. "peerDependencies": {
  127. "pg-native": ">=3.0.1"
  128. },
  129. "peerDependenciesMeta": {
  130. "pg-native": {
  131. "optional": true
  132. }
  133. }
  134. },
  135. "node_modules/pg-cloudflare": {
  136. "version": "1.2.7",
  137. "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.2.7.tgz",
  138. "integrity": "sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==",
  139. "license": "MIT",
  140. "optional": true
  141. },
  142. "node_modules/pg-connection-string": {
  143. "version": "2.9.1",
  144. "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.9.1.tgz",
  145. "integrity": "sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==",
  146. "license": "MIT"
  147. },
  148. "node_modules/pg-int8": {
  149. "version": "1.0.1",
  150. "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
  151. "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==",
  152. "license": "ISC",
  153. "engines": {
  154. "node": ">=4.0.0"
  155. }
  156. },
  157. "node_modules/pg-pool": {
  158. "version": "3.10.1",
  159. "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.10.1.tgz",
  160. "integrity": "sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==",
  161. "license": "MIT",
  162. "peerDependencies": {
  163. "pg": ">=8.0"
  164. }
  165. },
  166. "node_modules/pg-protocol": {
  167. "version": "1.10.3",
  168. "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.10.3.tgz",
  169. "integrity": "sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==",
  170. "license": "MIT"
  171. },
  172. "node_modules/pg-types": {
  173. "version": "2.2.0",
  174. "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
  175. "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
  176. "license": "MIT",
  177. "dependencies": {
  178. "pg-int8": "1.0.1",
  179. "postgres-array": "~2.0.0",
  180. "postgres-bytea": "~1.0.0",
  181. "postgres-date": "~1.0.4",
  182. "postgres-interval": "^1.1.0"
  183. },
  184. "engines": {
  185. "node": ">=4"
  186. }
  187. },
  188. "node_modules/pgpass": {
  189. "version": "1.0.5",
  190. "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz",
  191. "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==",
  192. "license": "MIT",
  193. "dependencies": {
  194. "split2": "^4.1.0"
  195. }
  196. },
  197. "node_modules/postgres-array": {
  198. "version": "2.0.0",
  199. "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
  200. "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==",
  201. "license": "MIT",
  202. "engines": {
  203. "node": ">=4"
  204. }
  205. },
  206. "node_modules/postgres-bytea": {
  207. "version": "1.0.0",
  208. "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
  209. "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==",
  210. "license": "MIT",
  211. "engines": {
  212. "node": ">=0.10.0"
  213. }
  214. },
  215. "node_modules/postgres-date": {
  216. "version": "1.0.7",
  217. "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
  218. "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==",
  219. "license": "MIT",
  220. "engines": {
  221. "node": ">=0.10.0"
  222. }
  223. },
  224. "node_modules/postgres-interval": {
  225. "version": "1.2.0",
  226. "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
  227. "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
  228. "license": "MIT",
  229. "dependencies": {
  230. "xtend": "^4.0.0"
  231. },
  232. "engines": {
  233. "node": ">=0.10.0"
  234. }
  235. },
  236. "node_modules/raw-body": {
  237. "version": "3.0.1",
  238. "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.1.tgz",
  239. "integrity": "sha512-9G8cA+tuMS75+6G/TzW8OtLzmBDMo8p1JRxN5AZ+LAp8uxGA8V8GZm4GQ4/N5QNQEnLmg6SS7wyuSmbKepiKqA==",
  240. "license": "MIT",
  241. "dependencies": {
  242. "bytes": "3.1.2",
  243. "http-errors": "2.0.0",
  244. "iconv-lite": "0.7.0",
  245. "unpipe": "1.0.0"
  246. },
  247. "engines": {
  248. "node": ">= 0.10"
  249. }
  250. },
  251. "node_modules/safer-buffer": {
  252. "version": "2.1.2",
  253. "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
  254. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  255. "license": "MIT"
  256. },
  257. "node_modules/setprototypeof": {
  258. "version": "1.2.0",
  259. "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
  260. "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
  261. "license": "ISC"
  262. },
  263. "node_modules/split2": {
  264. "version": "4.2.0",
  265. "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
  266. "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
  267. "license": "ISC",
  268. "engines": {
  269. "node": ">= 10.x"
  270. }
  271. },
  272. "node_modules/statuses": {
  273. "version": "2.0.1",
  274. "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
  275. "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
  276. "license": "MIT",
  277. "engines": {
  278. "node": ">= 0.8"
  279. }
  280. },
  281. "node_modules/toidentifier": {
  282. "version": "1.0.1",
  283. "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
  284. "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
  285. "license": "MIT",
  286. "engines": {
  287. "node": ">=0.6"
  288. }
  289. },
  290. "node_modules/unpipe": {
  291. "version": "1.0.0",
  292. "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
  293. "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
  294. "license": "MIT",
  295. "engines": {
  296. "node": ">= 0.8"
  297. }
  298. },
  299. "node_modules/xtend": {
  300. "version": "4.0.2",
  301. "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
  302. "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
  303. "license": "MIT",
  304. "engines": {
  305. "node": ">=0.4"
  306. }
  307. },
  308. "node_modules/zod": {
  309. "version": "3.25.76",
  310. "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
  311. "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
  312. "license": "MIT",
  313. "funding": {
  314. "url": "https://github.com/sponsors/colinhacks"
  315. }
  316. }
  317. }
  318. }