-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 762 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "most-used",
"version": "1.0.3",
"description": "Creates a top 100 of the most used words in your notes",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mjs",
"build": "bunx tsc -noEmit -skipLibCheck && bun esbuild.config.mjs production",
"lint": "bunx tsc --noEmit --skipLibCheck",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.25.0",
"obsidian": "^1.0.0",
"tslib": "2.4.0",
"typescript": "^5.9.3"
},
"dependencies": {
"chart.js": "^4.5.1"
}
}