netajam_obsidian_note_uid_g.../package.json
Netajam 70d82e700b Update README with NanoID, ULID, and duplicate detection docs (v1.2.1)
Document the three generator algorithms (UUID, NanoID, ULID),
NanoID configuration options, and the duplicate detection feature.
Update plugin descriptions in manifest.json and package.json.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 21:02:23 +01:00

29 lines
786 B
JSON

{
"name": "note_uid_generator",
"version": "1.2.1",
"description": "Obsidian plugin to generate unique IDs (UUID, NanoID, or ULID) for your notes",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@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.2",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"nanoid": "^3.3.7",
"ulid": "^3.0.2",
"uuid": "^11.1.0"
}
}