-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 873 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
29
30
31
32
33
{
"name": "obsidian-ikno-exporter",
"version": "0.1.0",
"description": "Obsidian plugin that exports file changes for ikno workday recaps.",
"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"
},
"keywords": [
"obsidian",
"plugin",
"ikno",
"tracking"
],
"author": "charemma",
"license": "Apache-2.0",
"devDependencies": {
"@types/diff": "^5.2.1",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.20.2",
"obsidian": "latest",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"dependencies": {
"diff": "^5.2.0"
}
}