mirror of
https://github.com/dnlbauer/obsidian-dataview-autocompletion.git
synced 2026-07-22 11:40:29 +00:00
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "obsidian-dataview-autocompletion",
|
|
"version": "0.9.5",
|
|
"description": "This is a plugin for Obsidian that provides autocompletion for Dataview metadata fields",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "npx rollup --config rollup.config.js -w",
|
|
"build": "npx rollup --config rollup.config.js --environment BUILD:production",
|
|
"check-format": "npx prettier --check src",
|
|
"fix-format": "npx prettier --write src",
|
|
"test": "npx jest",
|
|
"bdd": "npx jest -i --watch --no-cache",
|
|
"version": "node ersion-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"Obsidian",
|
|
"Dataview",
|
|
"autocompletion",
|
|
"suggestion",
|
|
"search",
|
|
"metadata"
|
|
],
|
|
"author": {
|
|
"name": "Daniel Bauer",
|
|
"url": "https://dbauer.me"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"babel-jest": "^29.7.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.2.11",
|
|
"obsidian": "latest",
|
|
"obsidian-dataview": "^0.5.67",
|
|
"prettier": "3.4.2",
|
|
"ts-jest": "^29.2.5",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4",
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
"rollup": "^2.79.2",
|
|
"rollup-plugin-copy": "^3.5.0",
|
|
"rollup-plugin-typescript2": "^0.36.0"
|
|
},
|
|
"dependencies": {
|
|
"@leeoniya/ufuzzy": "^1.0.17"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|