forked from thesamim/TickTickSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (49 loc) · 1.34 KB
/
package.json
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": "tickticksync",
"version": "1.0.9",
"description": "Sync TickTick tasks to Obsidian, and Obsidian tasks to TickTick",
"main": "main.js",
"scripts": {
"prepare": "npm run build-without-tsc",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build-without-tsc": "node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"obsidian-tasks",
"task-manager",
"task-management",
"TickTick"
],
"author": "thesamim",
"license": "GNU GPLv3",
"dependencies": {
"bson-objectid": "^2.0.4",
"dependency-tree": "^10.0.9",
"obsidian-task": "github:obsidian-tasks-group/obsidian-tasks",
"@electron/remote": "^2.0.8",
"electron": "^19.0.9",
"ticktick-api-lvt": "github:thesamim/ticktick-api-lvt"
},
"repository": {
"type": "git",
"url": "https://github.com/thesamim/TickTickSync.git"
},
"bugs": {
"url": "https://github.com/thesamim/TickTickSync/issues"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-plugin-copy": "^2.0.1",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}