modern-openxml
Version:
OpenXML for JavaScript
80 lines • 1.84 kB
JSON
{
"name": "modern-openxml",
"type": "module",
"version": "1.10.1",
"description": "OpenXML for JavaScript",
"author": "wxm",
"license": "MIT",
"homepage": "https://github.com/qq15725/modern-openxml",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/modern-openxml.git"
},
"bugs": {
"url": "https://github.com/qq15725/modern-openxml/issues"
},
"keywords": [
"OpenXML",
"typescript",
"OPC",
"pptx",
"xlsx",
"docx"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./presetShapeDefinitions": {
"types": "./assets/presetShapeDefinitions.d.ts",
"import": "./assets/presetShapeDefinitions.js",
"default": "./assets/presetShapeDefinitions.js"
},
"./presetTextWarpDefinitions": {
"types": "./assets/presetTextWarpDefinitions.d.ts",
"import": "./assets/presetTextWarpDefinitions.js",
"default": "./assets/presetTextWarpDefinitions.js"
},
"./*.mjs": "./*.js",
"./*": "./*"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"assets/*.d.ts"
]
}
},
"files": [
"assets",
"dist"
],
"dependencies": {
"fflate": "^0.8.2",
"modern-idoc": "^0.10.6",
"modern-path2d": "^1.4.15"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "vite build && unbuild",
"dev": "vite docs",
"lint": "eslint src",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}