-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 916 Bytes
/
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
{
"name": "todoist-sync",
"main": "./lib/todoist-sync",
"version": "0.1.2",
"description": "An Inkdrop plugin to synchronise notebooks and notes with Todoist projects and tasks.",
"keywords": [
"todoist",
"projects",
"tasks",
"todos",
"sync",
"synchronise",
"import",
"export"
],
"repository": "https://github.com/manuelsteiner/inkdrop-todoist-sync",
"license": "MIT",
"engines": {
"inkdrop": "^5.3.1"
},
"dependencies": {
"@doist/todoist-api-typescript": "^1.5.0",
"inkdrop-model": "^2.7.1"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^18.0.11",
"gts": "^3.1.0",
"typescript": "^4.7.2"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
}
}