-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tickticksync",
"version": "1.0.41",
"description": "Sync TickTick tasks to Obsidian, and Obsidian tasks to TickTick",
"main": "main.js",
"scripts": {
"check": "tsc --noEmit",
"dev": " vite build --mode development --watch",
"build": "vite build --mode production",
"test": "vitest",
"prepare_es": "npm run build-without-tsc",
"dev_es": "node esbuild.config.mjs",
"build_es": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build-without-tsc_es": "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",
"repository": {
"type": "git",
"url": "https://github.com/thesamim/TickTickSync.git"
},
"bugs": {
"url": "https://github.com/thesamim/TickTickSync/issues"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bson-objectid": "^2.0.4",
"dependency-tree": "^11.0.1",
"eventemitter2": "^6.4.9",
"yaml": "^2.6.1",
"lodash-es": "^4.17.21",
"lowdb": "^7.0.1",
"@types/lowdb": "^1.0.15",
"crypto-hash": "^3.1.0",
"obsidian": "latest"
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@tsconfig/svelte": "^5.0.4",
"@types/lowdb": "^1.0.15",
"@types/node": "^22.9.0",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"builtin-modules": "^4.0.0",
"esbuild": "0.24.0",
"esbuild-plugin-copy": "2.1.1",
"jsdom": "^24.0.0",
"svelte": "^5.2.10",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-static-copy": "^2.2.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6",
"ua-parser-js": "^1.0.39"
}
}