-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "logseq-plugin-left-sidebar-enhance",
"description": "Left sidebar",
"repository": "https://github.com/YU000jp/logseq-plugin-left-sidebar-enhance.git",
"author": "YU000jp",
"license": "MIT",
"logseq": {
"id": "left-sidebar-enhance",
"title": "Left-Sidebar Enhance",
"icon": "./icon.svg",
"main": "./dist/index.html"
},
"effect": true,
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode=dev",
"prod": "vite build"
},
"dependencies": {
"@logseq/libs": "^0.0.15",
"date-fns": "^2.30.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.6.4",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"npx": "^10.2.2",
"rollup-plugin-string": "^3.0.0",
"semantic-release": "^22.0.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-logseq": "^1.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}