mirror of
https://github.com/simontc/obsidian-note-autocreation.git
synced 2026-07-22 06:30:28 +00:00
30 lines
908 B
JSON
30 lines
908 B
JSON
{
|
|
"name": "obsidian-note-autocreator",
|
|
"version": "0.0.1",
|
|
"description": "This plugin makes it possible to automatically create notes when links are created to them.",
|
|
"main": "src/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": "jest --verbose --runInBand"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^6.3.1",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
"@typescript-eslint/parser": "^5.2.0",
|
|
"builtin-modules": "^3.2.0",
|
|
"esbuild": "0.13.12",
|
|
"esbuild-plugin-copy-file": "^0.0.2",
|
|
"jest": "^28.1.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^28.0.1",
|
|
"tslib": "2.3.1",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|