lubriedev_lmath/package.json

29 lines
1 KiB
JSON

{
"name": "lmath",
"version": "1.2.1",
"description": "Graph functions, systems, derivatives and integrals in interactive blocks.",
"main": "main.js",
"scripts": {
"build": "esbuild main.ts --bundle --outfile=main.js --external:obsidian --format=cjs --platform=node --target=es2018 --loader:.ttf=dataurl",
"test": "esbuild tests/motor.test.ts --bundle --platform=node --format=cjs --outfile=tests/.bundle.cjs && node tests/.bundle.cjs",
"test:zoom": "esbuild tests/zoom.test.ts --bundle --platform=node --format=cjs --outfile=tests/.bundle.zoom.cjs && node tests/.bundle.zoom.cjs",
"test:todo": "npm run test && npm run test:zoom",
"trazar": "esbuild herramientas/trazar.ts --bundle --platform=node --format=cjs --outfile=herramientas/.trazar.cjs"
},
"keywords": [
"obsidian",
"plugin",
"math"
],
"author": "Lenin",
"license": "MIT",
"devDependencies": {
"@types/node": "^26.1.0",
"esbuild": "^0.20.0",
"obsidian": "1.13.1",
"typescript": "^5.0.0"
},
"dependencies": {
"mathjs": "^12.0.0"
}
}