-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 2.13 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-kanban-plugin",
"author": "benjypng",
"description": "Simple plugin to help visualise data on a Kanban Board.",
"license": "MIT",
"logseq": {
"id": "logseq-kanban-plugin",
"title": "logseq-kanban-plugin",
"icon": "./icon.svg",
"main": "dist/index.html"
},
"scripts": {
"dev:start": "pnpm add @logseq/libs -S && pnpm add @types/eslint @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint eslint-config-prettier eslint-plugin-prettier prettier vite vite-plugin-logseq vite-tsconfig-paths typescript -D",
"dev:tailwind": "pnpm add tailwindcss cssnano autoprefixer -D && touch tailwind.config.js && touch .postcssrc.cjs && touch src/tailwind.css",
"dev": "npx vite",
"build": "npx tsc && npx vite build",
"preview": "npx vite preview"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/github",
{
"assets": [
"logseq-kanban-plugin.zip"
]
}
]
]
},
"dependencies": {
"@asseinfo/react-kanban": "^2.2.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@logseq/libs": "^0.0.15",
"chrono-node": "^2.7.6",
"logseq-dateutils": "^0.0.26",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-string-replace": "github:iansinnott/react-string-replace"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint": "^8.56.10",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^4.5.3",
"vite-plugin-logseq": "^1.1.2",
"vite-tsconfig-paths": "^4.3.2"
}
}