-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
73 lines (73 loc) · 2.06 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
73
{
"name": "libby-download-extension",
"version": "0.6.0",
"description": "Firefox extension to download Libby audiobooks for transfer to unsupported devices",
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"package": "npm run build && cd dist && web-ext build",
"lint": "eslint --ext .ts,.js --max-warnings=0 .",
"prettier": "prettier --write",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/chai": "^4.3.16",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.12.0",
"babel-jest": "^29.6.3",
"babel-loader": "^9.1.3",
"chai": "^5.1.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.0",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"mini-css-extract-plugin": "^2.8.0",
"prettier": "^3.3.2",
"sass": "^1.77.5",
"sass-loader": "^13.0.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"web-ext": "^7.11.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.24.6",
"@types/firefox-webext-browser": "^120.0.4",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"jszip": "^3.10.1",
"music-metadata": "^8.3.0",
"node-id3": "^0.2.5",
"normalize.css": "^8.0.1",
"path-browserify": "^1.0.1",
"string_decoder": "^1.3.0",
"uuid": "^9.0.1"
},
"browserslist": "last 5 firefox versions",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"npm run prettier",
"npm run lint"
]
}
}