{ "name": "obsidian-daily-notes-interface", "version": "0.9.2", "description": "Interface for creating daily notes in Obsidian", "author": "liamcain", "main": "./dist/main.js", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/liamcain/obsidian-daily-notes-interface" }, "bin": { "obsidian-daily-notes-interface": "./dist/main.js" }, "scripts": { "lint": "eslint . --ext .ts", "build": "npm run lint && rollup -c", "test": "jest", "test:watch": "yarn test -- --watch" }, "dependencies": { "obsidian": "obsidianmd/obsidian-api#master", "tslib": "2.1.0" }, "devDependencies": { "@rollup/plugin-commonjs": "18.0.0", "@rollup/plugin-node-resolve": "11.2.1", "@rollup/plugin-typescript": "8.2.1", "@types/jest": "26.0.22", "@types/moment": "2.13.0", "@typescript-eslint/eslint-plugin": "4.20.0", "@typescript-eslint/parser": "4.20.0", "eslint": "7.23.0", "jest": "26.6.3", "moment": "2.29.1", "moment-timezone": "0.5.33", "rollup": "2.44.0", "ts-jest": "26.5.4", "typescript": "4.2.3" }, "jest": { "clearMocks": true, "moduleNameMapper": { "src/(.*)": "/src/$1" }, "transform": { "^.+\\.ts$": "ts-jest" }, "moduleFileExtensions": [ "js", "ts" ] } }