mirror of
https://github.com/mts7/obsidian-word-frequency.git
synced 2026-07-22 12:20:30 +00:00
59 lines
1.8 KiB
JSON
59 lines
1.8 KiB
JSON
{
|
|
"name": "word-frequency",
|
|
"version": "1.2.1",
|
|
"type": "module",
|
|
"description": "Count word frequency in current note within Obsidian",
|
|
"main": "main.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "npm run build && obsidian --dev",
|
|
"watch": "rollup -c --watch",
|
|
"prettier": "npx prettier --check \"src/**/*.{js,ts,jsx,tsx}\"",
|
|
"pretty-fix": "npx prettier src --write",
|
|
"lint": "eslint . --ext \"src/**/*.{js,ts,jsx,tsx}\"",
|
|
"lint-fix": "eslint . --ext .js,.ts --fix",
|
|
"test": "jest",
|
|
"coverage": "npx jest --coverage"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mts7/obsidian-word-frequency.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Mike Rodarte",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mts7/obsidian-word-frequency/issues"
|
|
},
|
|
"homepage": "https://github.com/mts7/obsidian-word-frequency#readme",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.22.0",
|
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsdom": "^21.1.7",
|
|
"@types/node": "^22.13.9",
|
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
"@typescript-eslint/parser": "^8.26.1",
|
|
"eslint": "^9.22.0",
|
|
"eslint-config-prettier": "^10.1.1",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.11.0",
|
|
"globals": "^16.0.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jsdom": "^26.0.0",
|
|
"obsidian": "^1.8.7",
|
|
"prettier": "^3.5.3",
|
|
"rollup": "^4.34.9",
|
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
"ts-jest": "^29.2.6",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.26.1"
|
|
}
|
|
}
|