-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "countcraft",
"version": "1.0.0",
"description": "Powerful note statistics calculator for Obsidian that counts words, characters, lines, and headings",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"obsidian",
"plugin",
"statistics",
"word-count",
"markdown",
"note-taking",
"properties",
"metadata"
],
"author": "Meet Vekaria",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"builtin-modules": "^3.3.0",
"esbuild": "^0.27.2",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"obsidian": "latest",
"prettier": "^2.8.8",
"tslib": "^2.4.1",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meet-v/CountCraft.git"
},
"bugs": {
"url": "https://github.com/meet-v/CountCraft/issues"
},
"homepage": "https://github.com/meet-v/CountCraft#readme",
"engines": {
"node": ">=16"
}
}