59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "Flashlang",
|
|
"version": "1.0.0",
|
|
"description": "Flashlang is a small browser extension to help you learn languages",
|
|
"main": "webpack.config.js",
|
|
"dependencies": {
|
|
"@asmagin/google-translate-api": "^8.0.2",
|
|
"@sveltejs/svelte-virtual-list": "^3.0.1",
|
|
"svelte-feather-icons": "^4.0.0",
|
|
"svelte-select": "^4.4.7",
|
|
"tippy.js": "^6.2.5",
|
|
"webextension-polyfill": "^0.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/svelte": "^3.0.0",
|
|
"@types/webextension-polyfill": "^0.8.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"copy-webpack-plugin": "^10.2.4",
|
|
"css-loader": "^6.7.1",
|
|
"eslint": "^8.13.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"file-loader": "^6.0.0",
|
|
"html-loader": "^3.1.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"husky": ">=4",
|
|
"lint-staged": ">=10",
|
|
"prettier": "^2.0.5",
|
|
"prettier-plugin-svelte": "^2.7.0",
|
|
"raw-loader": "^4.0.1",
|
|
"sass": "^1.26.10",
|
|
"sass-loader": "^12.6.0",
|
|
"style-loader": "^3.3.1",
|
|
"svelte": "^3.24.1",
|
|
"svelte-check": "^2.7.0",
|
|
"svelte-loader": "^3.1.2",
|
|
"svelte-preprocess": "^4.0.10",
|
|
"ts-loader": "^9.2.8",
|
|
"typescript": "^4.6.3",
|
|
"web-ext": "^6.8.0",
|
|
"webpack": "^5.72.0",
|
|
"webpack-cli": "^4.9.2",
|
|
"worklet-loader": "^2.0.0",
|
|
"zip-webpack-plugin": "^4.0.1"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"run:firefox": "web-ext run --source-dir ./dist"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"lint-staged": {
|
|
"*/**": [
|
|
"eslint --fix ",
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|