mirror of
https://github.com/sbuffkin/hexmaker.git
synced 2026-07-22 14:30:24 +00:00
35 lines
935 B
JSON
35 lines
935 B
JSON
{
|
|
"name": "hexmaker-plugin",
|
|
"version": "0.1.0",
|
|
"description": "A plugin to power hex crawl worldbuilding and running.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin"
|
|
],
|
|
"author": "Mark B",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@codemirror/lang-markdown": "^6.2.2",
|
|
"@codemirror/language-data": "^6.5.1",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/view": "^6.25.1",
|
|
"@types/node": "^22.10.1",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "0.24.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.6.3",
|
|
"vitest": "^4.1.0"
|
|
},
|
|
"dependencies": {
|
|
"minisearch": "^7.2.0"
|
|
}
|
|
}
|