-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.9 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
71
72
{
"name": "logseq-powertags-plugin",
"author": "benjypng",
"description": "Automatically create block properties based on specified tags.",
"license": "MIT",
"logseq": {
"id": "logseq-powertags-plugin",
"title": "logseq-powertags-plugin",
"icon": "./icon.svg",
"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-powertags-plugin.zip"
]
}
]
]
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@logseq/libs": "^0.0.15",
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"date-fns": "^3.6.0",
"logseq-dateutils": "^2.1.2",
"lucide-react": "^0.437.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2"
},
"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",
"husky": "^9.1.5",
"postcss": "^8.4.42",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.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"
}
}