mirror of
https://github.com/yangcht/obsidian-things-toolkit.git
synced 2026-07-22 07:45:44 +00:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"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/(.*)": "<rootDir>/src/$1"
|
|
},
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
]
|
|
}
|
|
}
|