takitsuba_obsidian-auto-bullet/package.json

37 lines
952 B
JSON
Raw Normal View History

2025-03-13 08:11:20 +00:00
{
"name": "auto-bullet",
2025-06-26 14:36:24 +00:00
"version": "1.1.0",
"description": "Automatically inserts bullet points when you type spaces or tabs at the beginning of a line.",
2025-03-13 08:11:20 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2025-03-17 12:55:04 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest --passWithNoTests"
2025-03-13 08:11:20 +00:00
},
2025-03-14 08:35:42 +00:00
"keywords": [
"obsidian",
"plugin",
"bullet",
"markdown",
"list"
],
2025-03-13 08:11:20 +00:00
"author": "",
"license": "MIT",
"devDependencies": {
2025-03-17 12:55:04 +00:00
"@types/jest": "^29.5.14",
2025-03-13 08:11:20 +00:00
"@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",
2025-03-17 12:55:04 +00:00
"jest": "^29.7.0",
"jest-environment-obsidian": "^0.0.1",
"jest-message-util": "^29.7.0",
2025-03-13 08:11:20 +00:00
"obsidian": "latest",
2025-03-17 12:55:04 +00:00
"ts-jest": "^29.2.6",
2025-03-13 08:11:20 +00:00
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}