mts7_obsidian-word-frequency/package.json
2026-03-01 19:29:46 -05:00

63 lines
2 KiB
JSON

{
"name": "word-frequency",
"version": "1.3.8",
"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}\"",
"format": "npx prettier src --write",
"lint": "eslint . --ext \"**/*.{js,ts,jsx,tsx}\"",
"lint-fix": "eslint . --ext .js,.ts --fix",
"test": "jest",
"coverage": "npx jest --coverage",
"mutate": "stryker run",
"all": "npm run lint-fix && npm run format && npm run build && npm run coverage && npm run mutate"
},
"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.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@stryker-mutator/core": "^9.3.0",
"@stryker-mutator/jest-runner": "^9.3.0",
"@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.59.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}