netajam_obsidian_note_uid_g.../package.json
2026-04-27 22:11:08 +02:00

34 lines
928 B
JSON

{
"name": "note_uid_generator",
"version": "1.2.1",
"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"
}
}