mirror of
https://github.com/mii443/obsidian-typst.git
synced 2025-08-22 16:15:34 +00:00
33 lines
992 B
JSON
33 lines
992 B
JSON
{
|
|
"name": "obsidian-typst-plugin",
|
|
"version": "0.5.1",
|
|
"description": "Renders `typst` code blocks to images with Typst.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build-dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"wasm": "wasm-pack build compiler --target web",
|
|
"wasm-dev": "wasm-pack build compiler --target web --dev",
|
|
"wasm-build-dev": "npm run wasm-dev && npm run build-dev",
|
|
"wasm-build": "npm run wasm && npm run build",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "fenjalien",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
"@typescript-eslint/parser": "^5",
|
|
"builtin-modules": "^3",
|
|
"esbuild": "^0.18",
|
|
"esbuild-plugin-inline-worker": "^0.1.1",
|
|
"typescript": "^5.1"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest",
|
|
"obsidian-typst": "file:pkg",
|
|
"tslib": "^2"
|
|
}
|
|
}
|