-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "logseq-plugin-audiobookshelf-import",
"version": "1.1.0",
"author": "Demistify",
"main": "dist/index.html",
"targets": {
"main": false
},
"description": "Audiobookshelf Import",
"license": "MIT",
"dependencies": {
"@logseq/libs": "^0.0.14",
"date-fns": "^2.28.0",
"html-entities": "2.3.3",
"mustache": "^4.2.0",
"pnpm": "^7.25.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@types/jest": "^29.0.3",
"@types/mustache": "^4.2.2",
"conventional-changelog-conventionalcommits": "5.0.0",
"jest": "^29.0.3",
"jest-fetch-mock": "^3.0.3",
"logseq-dateutils": "^0.0.26",
"parcel": "^2.0.0",
"prettier": "^2.8.3",
"semantic-release": "^19.0.0",
"sweetalert": "^2.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.8.3"
},
"browserslist": [
"chrome 80"
],
"logseq": {
"id": "logseq-plugin-audiobookshelf-import",
"icon": "audiobookshelf.png",
"title": "Audiobookshelf Import"
},
"scripts": {
"dev": "parcel public/index.html --public-url ./",
"build": "parcel build --public-url . --no-source-maps public/index.html",
"format": "prettier --write **/*.{js,ts}",
"test": "jest --coverage"
}
}