mirror of
https://github.com/liamriddell/obsidian-solve.git
synced 2026-07-22 08:20:31 +00:00
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "solve",
|
|
"version": "1.1.0",
|
|
"description": "Supercharge your notes with real-time calculations without AI fuss. From dates ('Now + 20 days'), percentages ('10% of 120'), units of measurement ('100cm + 2m'), arithmetic ('10 + 5') and more!",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"lint": "npx eslint --fix src",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"ohm": "npx ohm generateBundles --withTypes src/grammars/**/*.ohm",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "Liam Riddell",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.6.2",
|
|
"@lezer/common": "^1.0.3",
|
|
"@ohm-js/cli": "https://gitpkg.now.sh/LiamRiddell/ohm/packages/cli?cli-includes",
|
|
"@types/convert-units": "^2.3.8",
|
|
"@types/node": "16.18.39",
|
|
"@typescript-eslint/eslint-plugin": "6.2.0",
|
|
"@typescript-eslint/parser": "6.2.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.18.17",
|
|
"eslint": "8.45.0",
|
|
"jest": "^29.6.2",
|
|
"obsidian": "latest",
|
|
"prettier": "3.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"tslib": "2.6.1",
|
|
"typescript": "5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"animate.css": "^4.1.1",
|
|
"convert-units": "^2.3.4",
|
|
"moment": "^2.29.4",
|
|
"ohm-js": "^17.1.0"
|
|
}
|
|
}
|