CoolFace
Apppublic

jasperai/t2i-technical-interactive-report

sourceHugging Faceupdated 17d agoView on Hugging Face
22likes
package.json92 linesDownload Raw Back to app
1{2  "name": "research-article-template",3  "version": "1.0.0",4  "description": "A modern, interactive template for scientific writing that brings papers to life with web-native features",5  "keywords": [6    "research",7    "scientific-writing",8    "template",9    "markdown",10    "mdx",11    "astro",12    "interactive",13    "academic",14    "distill",15    "web-native"16  ],17  "homepage": "https://huggingface.co/spaces/tfrere/research-article-template",18  "repository": {19    "type": "git",20    "url": "https://huggingface.co/spaces/tfrere/research-article-template"21  },22  "bugs": {23    "url": "https://huggingface.co/spaces/tfrere/research-article-template/discussions"24  },25  "author": {26    "name": "Thibaud Frere",27    "url": "https://huggingface.co/tfrere"28  },29  "license": "CC-BY-4.0",30  "private": false,31  "type": "module",32  "scripts": {33    "dev": "astro dev",34    "build": "astro build",35    "preview": "astro preview --port 8080 --host",36    "export:pdf": "node ./scripts/export-pdf.mjs",37    "export:txt": "node ./scripts/export-txt.mjs",38    "export:docx": "node ./scripts/export-docx.mjs",39    "export:latex": "node ./scripts/export-latex.mjs",40    "export:images": "node ./scripts/screenshot-elements.mjs",41    "export:bundle": "node ./scripts/export-bundle.mjs",42    "sync:template": "node ./scripts/sync-template.mjs",43    "sync:template:dry": "node ./scripts/sync-template.mjs --dry-run",44    "sync:template:force": "node ./scripts/sync-template.mjs --force",45    "latex:convert": "cd scripts/latex-importer && node index.mjs",46    "notion:import": "cd scripts/notion-importer && node index.mjs",47    "release:patch": "node ../scripts/release.mjs patch",48    "release:minor": "node ../scripts/release.mjs minor",49    "release:major": "node ../scripts/release.mjs major"50  },51  "devDependencies": {52    "@astrojs/mdx": "^3.1.9",53    "@astrojs/svelte": "^5.5.0",54    "astro": "^4.10.0",55    "astro-compressor": "^0.4.1",56    "astro-mermaid": "^1.0.4",57    "mermaid": "^11.10.1",58    "playwright": "^1.55.0",59    "postcss": "^8.5.6",60    "postcss-custom-media": "^11.0.6",61    "postcss-preset-env": "^10.3.1",62    "rehype-autolink-headings": "^7.1.0",63    "rehype-citation": "^2.3.1",64    "rehype-katex": "^7.0.1",65    "rehype-pretty-code": "^0.14.1",66    "rehype-slug": "^6.0.0",67    "remark-directive": "^3.0.0",68    "remark-footnotes": "^4.0.1",69    "remark-math": "^6.0.0",70    "remark-toc": "^9.0.0",71    "svelte": "^4.2.19"72  },73  "engines": {74    "node": ">=20.0.0"75  },76  "dependencies": {77    "@zumer/snapdom": "^2.0.1",78    "buffer": "^6.0.3",79    "d3": "^7.9.0",80    "docx": "^9.5.1",81    "fonteditor-core": "^2.6.3",82    "html2canvas": "^1.4.1",83    "jszip": "^3.10.1",84    "katex": "^0.16.22",85    "looks-same": "^10.0.1",86    "opentype.js": "^1.3.4",87    "prism-themes": "^1.9.0",88    "sharp": "^0.33.5",89    "stream-browserify": "^3.0.0"90  }91}92