UNPKG

joplin-plugin-math-mode

Version:

A plugin for inputting and evaluating math in markdown code blocks. It's built on top of the excellent [mathjs](https://mathjs.org/), meaning it can be used to perform symbolic calculation, vector math and can even handle units!

39 lines (38 loc) 1.48 kB
{ "name": "joplin-plugin-math-mode", "version": "0.8.0", "homepage": "https://github.com/CalebJohn/joplin-math-mode", "description": "", "scripts": { "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", "prepare": "npm run dist", "updateVersion": "webpack --env joplin-plugin-config=updateVersion", "update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force", "updatetags": "LOGS=$(git log $(git describe --tags --abbrev=0 HEAD~1)..HEAD~1 --oneline) && git tag -fam \"v$npm_package_version\n\n$LOGS\" v$npm_package_version && git tag -fa v$npm_package_version", "postversion": "npm run updatetags && git push origin main --tags", "version": "sed -i '/\\\"version\\\": \\\"/s/[^\\\"]*\\\",/'\"$npm_package_version\\\",/\" src/manifest.json && git add src/manifest.json" }, "keywords": [ "joplin-plugin", "calculator", "mathjs" ], "license": "MIT", "devDependencies": { "@codemirror/view": "^6.26.3", "@codemirror/language": "^6.10.2", "@types/node": "^18.7.13", "chalk": "^4.1.0", "copy-webpack-plugin": "^11.0.0", "fs-extra": "^10.1.0", "glob": "^8.0.3", "tar": "^6.1.11", "ts-loader": "^9.3.1", "typescript": "^4.8.2", "webpack": "^5.74.0", "webpack-cli": "^4.10.0" }, "dependencies": { "mathjs": "^14.4.0" } }