-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "logseq-plugin-arxiv-tool",
"description": "create arxiv summary from link",
"repository": "https://github.com/KtechB/logseq-plugin-arxiv-tool",
"author": "ktechb",
"license": "MIT",
"logseq": {
"id": "arxiv",
"title": "arxiv tool",
"icon": "./icon.svg",
"main": "./dist/index.html"
},
"effect": true,
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rm -r ./dist/* || true",
"dev": "vite",
"build": "tsc && vite build --mode=dev",
"prod": "npm run clean && vite build"
},
"dependencies": {
"@logseq/libs": "^0.0.15"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.4.7",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.6.2",
"npx": "^10.2.2",
"rollup-plugin-string": "^3.0.0",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"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"
}
}
}