-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "usage-stats",
"version": "1.0.12",
"description": "Track time spent in Obsidian with detailed statistics and beautiful charts.",
"main": "main.js",
"scripts": {
"dev": "node scripts/esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production",
"build:local": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production keep-console && node scripts/copy-to-vault.mjs",
"package": "node scripts/build-package.mjs --production",
"package:dev": "node scripts/build-package.mjs",
"package:dist": "node scripts/build-package.mjs --production --output=dist",
"version": "node scripts/version-bump.mjs",
"release": "node scripts/release.mjs",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major",
"release:tag": "node scripts/release-tag.mjs",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"time-tracking",
"statistics",
"productivity",
"charts",
"analytics"
],
"author": "林逍遥",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/createitv/obsidian-usage-stats.git"
},
"bugs": {
"url": "https://github.com/createitv/obsidian-usage-stats/issues"
},
"homepage": "https://github.com/createitv/obsidian-usage-stats#readme",
"engines": {
"node": ">=18.x"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"archiver": "^6.0.1",
"builtin-modules": "5.0.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "0.25.5",
"eslint": "^8.57.1",
"fs-extra": "^11.3.0",
"obsidian": "latest",
"postcss": "^8.5.6",
"postcss-nesting": "^13.0.2",
"ts-jest": "^29.4.0",
"tslib": "2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"dotenv": "^16.5.0",
"lucide-react": "^0.534.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}