33 lines
968 B
JSON
33 lines
968 B
JSON
{
|
|
"type": "module",
|
|
"name": "koboprice",
|
|
"version": "1.0.0",
|
|
"description": "find lowest price on Kobo",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"lint": "eslint --fix",
|
|
"build": "esbuild lib/index.js --bundle --minify --sourcemap --target=chrome58,firefox57,safari11 --outfile=dist/index.js",
|
|
"watch-build": "npm run build -- --watch",
|
|
"watch-ext": "web-ext run --start-url kobo.com",
|
|
"watch": "concurrently npm:watch-build npm:watch-ext",
|
|
"ext-build": "web-ext build"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.6.0",
|
|
"concurrently": "^8.2.2",
|
|
"esbuild": "0.23.0",
|
|
"eslint": "^9.6.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"globals": "^15.8.0",
|
|
"prettier": "3.3.2",
|
|
"web-ext": "^8.2.0"
|
|
},
|
|
"dependencies": {
|
|
"currency.js": "^2.0.4",
|
|
"date-fns": "^3.6.0"
|
|
}
|
|
}
|