{ "name": "note_uid_generator", "version": "1.3.0", "description": "Obsidian plugin to generate unique IDs (UUID, NanoID, ULID, or Snowflake) for your notes", "main": "src/main.js", "scripts": { "dev": "node esbuild.config.mjs", "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "lint": "eslint \"src/**/*.ts\"", "test": "vitest run", "test:watch": "vitest", "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", "eslint": "^8.57.1", "obsidian": "latest", "tslib": "2.4.0", "typescript": "4.7.4", "vitest": "^1.6.1" }, "dependencies": { "nanoid": "^3.3.7", "ulid": "^3.0.2", "uuid": "^11.1.0" } }