chatgpt-to-markdown 1.7.0 → 1.7.1

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/README.md CHANGED
@@ -117,7 +117,7 @@ git push --follow-tags
117
117
 
118
118
  ## Release notes
119
119
 
120
- - 1.7.0: 29 Jun 2025. Add thinktime analysis tool as npx executable. Analyze thinking/reasoning time statistics from ChatGPT conversations.
120
+ - 1.7.1: 29 Jun 2025. Add thinktime analysis tool as npx executable. Analyze thinking/reasoning time statistics from ChatGPT conversations.
121
121
  - 1.6.0: 18 Jul 2025. Handle `thoughts`, `reasoning_recap`, `sonic_webpage`. Include projects
122
122
  - 1.5.5: 02 Nov 2024. Add conversation link. Use conversation ID as fallback title if title is empty.
123
123
  - 1.5.4: 02 Nov 2024. Skip `user_editable_context` to avoid polluting Markdown with custom instructions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatgpt-to-markdown",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Convert ChatGPT exported conversations.json to Markdown",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/thinktime.js CHANGED
@@ -276,6 +276,4 @@ async function main() {
276
276
  }
277
277
  }
278
278
 
279
- if (import.meta.url === `file://${process.argv[1]}`) {
280
- main();
281
- }
279
+ main();