mirror of
https://github.com/takitsuba/obsidian-auto-bullet.git
synced 2026-07-22 05:42:45 +00:00
36 lines
952 B
JSON
36 lines
952 B
JSON
{
|
|
"name": "auto-bullet",
|
|
"version": "1.1.0",
|
|
"description": "Automatically inserts bullet points when you type spaces or tabs at the beginning of a line.",
|
|
"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": "jest --passWithNoTests"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"bullet",
|
|
"markdown",
|
|
"list"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.25.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-obsidian": "^0.0.1",
|
|
"jest-message-util": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.2.6",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|