๐Ÿ“ฆ hyoban / obsidian-memos-plugin

๐Ÿ“„ package.json ยท 34 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34{
  "name": "obsidian-memos-plugin",
  "version": "1.2.0",
  "description": "A plugin for Obsidian that allows you to sync your memos.",
  "keywords": [],
  "license": "MIT",
  "author": "",
  "main": "main.js",
  "type": "module",
  "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",
    "format": "prettier --write .",
    "lint": "eslint ."
  },
  "prettier": "@planet-matrix/prettier-config",
  "dependencies": {
    "kirika": "^0.5.7"
  },
  "devDependencies": {
    "@planet-matrix/eslint-config": "^0.1.6",
    "@planet-matrix/prettier-config": "^0.1.0",
    "@types/node": "^20.7.1",
    "builtin-modules": "3.3.0",
    "esbuild": "0.19.4",
    "eslint": "^8.50.0",
    "obsidian": "latest",
    "prettier": "^3.0.3",
    "tslib": "2.6.2",
    "typescript": "5.2.2"
  }
}