-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "logseq-todoist-plugin",
"author": "benjypng",
"description": "Send and retrieve tasks from Todoist.",
"license": "MIT",
"logseq": {
"id": "logseq-todoist-plugin",
"title": "logseq-todoist-plugin",
"icon": "./icon.png",
"main": "dist/index.html"
},
"scripts": {
"dev": "npx vite",
"build": "npx eslint . --fix && npx tsc && npx vite build",
"preview": "npx vite preview",
"prepare": "husky"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/github",
{
"assets": [
"logseq-todoist-plugin.zip"
]
}
]
]
},
"dependencies": {
"@doist/todoist-api-typescript": "^3.0.3",
"@logseq/libs": "^0.0.17",
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"logseq-dateutils": "^2.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"postcss": "^8.4.45",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.3",
"vite-plugin-logseq": "^1.1.2",
"vite-tsconfig-paths": "^5.0.1"
}
}