-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "obsidian-meeting-tasks",
"version": "3.4.4",
"description": "Dynamic Gmail task extraction with configurable label processors for Obsidian. Full mobile support.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.js",
"dev:watch": "node esbuild.config.js --watch",
"build": "tsc --noEmit && node esbuild.config.js production",
"build:release": "NODE_ENV=production node build.js",
"build:dev": "node build.js",
"lint": "tsc --noEmit",
"clean": "rm -rf dist main.js",
"release": "npm run clean && npm run build:release",
"deploy": "./deploy.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"obsidian",
"plugin",
"meeting",
"tasks",
"ai"
],
"author": "Jim Allen <jimallen@gmail.com>",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^4.0.4",
"@vitest/ui": "^4.0.4",
"esbuild": "^0.25.9",
"obsidian": "^1.8.7",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vitest": "^4.0.4"
},
"dependencies": {
"@types/moment": "^2.11.29",
"@types/moment-timezone": "^0.5.13",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0"
}
}