forked from benjypng/logseq-todoist-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "logseq-todoist-plugin",
"version": "5.2.3",
"author": "hkgnp",
"description": "Simple Todoist plugin to pull only active tasks from specified project, i.e. Inbox",
"logseq": {
"id": "logseq-todoist-plugin",
"title": "logseq-todoist-plugin",
"icon": "./icon.png"
},
"main": "dist/index.html",
"targets": {
"main": false
},
"scripts": {
"build": "rm -R dist && echo 'dist folder removed'; postcss src/tailwind.css -o src/App.css && parcel build --no-source-maps src/index.html --public-url ./"
},
"license": "MIT",
"dependencies": {
"@doist/todoist-api-typescript": "^2.1.2",
"@logseq/libs": "^0.0.14",
"logseq-dateutils": "^0.0.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"buffer": "^6.0.3",
"cssnano": "^6.0.0",
"parcel": "^2.8.3",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0"
}
}