better-word-count/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-09 13:33:44 +00:00
{
"name": "better-word-count",
2021-06-20 07:28:24 +00:00
"version": "0.6.2",
2020-11-09 13:41:01 +00:00
"description": "Counts the words of selected text in the editor.",
2020-11-09 13:33:44 +00:00
"main": "main.js",
"scripts": {
"lint": "svelte-check && eslint . --ext .ts",
2020-11-09 13:33:44 +00:00
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js"
},
"repository": {
"url": "https://github.com/lukeleppan/better-word-count.git"
},
2020-11-09 13:33:44 +00:00
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin"
],
"author": "Luke Leppan",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@tsconfig/svelte": "^1.0.13",
"@types/moment": "^2.13.0",
"@types/node": "^14.17.3",
2020-11-09 13:33:44 +00:00
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte-check": "^2.2.0",
"svelte-preprocess": "^4.7.3",
"ts-node": "^9.1.1",
2020-11-09 13:33:44 +00:00
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"svelte": "^3.38.3"
2020-11-09 13:33:44 +00:00
}
}