Files
wehub-resource-sync c48612c494
CI / E2E Tests (push) Has been cancelled
CI / Lint, Typecheck & Unit Tests (push) Has been cancelled
Docs Build / Build docs site (push) Has been cancelled
Publish @openmaic packages / Build, validate & publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:23 +08:00

87 lines
2.2 KiB
JSON

{
"name": "@openmaic/importer",
"version": "0.1.0",
"description": "A javascript tool for parsing .pptx file",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean:dist": "rimraf dist",
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
"dev": "rollup -c -w",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build",
"transvert": "npx tsx scripts/transvert.js",
"transvert:pro": "npx tsx scripts/transvert.ts"
},
"keywords": [
"ppt",
"pptx",
"json"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/THU-MAIC/OpenMAIC",
"directory": "packages/@openmaic/importer"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@openmaic/dsl": "workspace:*",
"@xmldom/xmldom": "^0.9.9",
"jpegxr": "^0.3.0",
"jszip": "^3.10.1",
"katex": "^0.16.33",
"mathml-to-latex": "1.5.0",
"nanoid": "^5.1.6",
"omml2mathml": "^1.3.0",
"pdfjs-dist": "4.8.69",
"pptxtojson": "^1.11.0",
"tinycolor2": "1.6.0",
"utif": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-eslint": "^9.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^8.27.0",
"rollup": "^3.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"pnpm": {
"onlyBuiltDependencies": []
}
}