-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "logseq13-shorten-my-links",
"version": "1.2.0",
"description": "Shorts redundant hierarchical references to reduce visual efforts 👁️",
"keywords": [
"links",
"references",
"abbreviation",
"namespaces",
"hierarchies"
],
"author": "stdword",
"repository": "https://github.com/stdword/logseq13-shorten-my-links.git",
"license": "MIT",
"logseq": {
"id": "logseq13-shorten-my-links",
"title": "Shorten My Links",
"icon": "./icon.png",
"main": "./dist/index.html"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rm -r ./dist/* || true",
"dev": "vite",
"build": "tsc && vite build --mode=dev",
"prod": "tsc && 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.8.3",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^22.0.5",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-logseq": "^1.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}