Update dependencies and prepare for esbuild setup.
This commit is contained in:
parent
082a53d053
commit
fe5f5dd8b4
51
package.json
51
package.json
|
@ -2,45 +2,44 @@
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@holllo/migration-helper": "^0.1.2",
|
"@holllo/migration-helper": "^0.1.4",
|
||||||
|
"@holllo/webextension-storage": "^0.2.0",
|
||||||
"caret-pos": "^2.0.0",
|
"caret-pos": "^2.0.0",
|
||||||
"debounce": "^1.2.1",
|
"debounce": "^1.2.1",
|
||||||
"htm": "^3.1.0",
|
"modern-normalize": "^2.0.0",
|
||||||
"modern-normalize": "^1.1.0",
|
|
||||||
"platform": "^1.3.6",
|
"platform": "^1.3.6",
|
||||||
"preact": "^10.6.6",
|
"preact": "^10.15.1",
|
||||||
"webextension-polyfill": "^0.8.0"
|
"webextension-polyfill": "^0.10.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@preact/preset-vite": "^2.1.7",
|
"@bauke/eslint-config": "^0.1.2",
|
||||||
|
"@bauke/prettier-config": "^0.1.2",
|
||||||
|
"@bauke/stylelint-config": "^0.1.2",
|
||||||
"@types/debounce": "^1.2.1",
|
"@types/debounce": "^1.2.1",
|
||||||
|
"@types/node": "^20.3.1",
|
||||||
"@types/platform": "^1.3.4",
|
"@types/platform": "^1.3.4",
|
||||||
"@types/webextension-polyfill": "^0.8.2",
|
"@types/webextension-polyfill": "^0.10.0",
|
||||||
"postcss": "^8.4.8",
|
"concurrently": "^8.2.0",
|
||||||
"sass": "^1.49.9",
|
"cssnano": "^6.0.1",
|
||||||
"stylelint": "^14.5.3",
|
"esbuild": "^0.18.6",
|
||||||
"stylelint-config-standard-scss": "^3.0.0",
|
"esbuild-copy-static-files": "^0.1.0",
|
||||||
|
"esbuild-sass-plugin": "^2.10.0",
|
||||||
|
"postcss": "^8.4.24",
|
||||||
|
"sass": "^1.63.6",
|
||||||
|
"stylelint": "^15.9.0",
|
||||||
"trash-cli": "^5.0.0",
|
"trash-cli": "^5.0.0",
|
||||||
"typescript": "^4.6.2",
|
"tsx": "^3.12.7",
|
||||||
"vite": "^2.8.6",
|
"typescript": "^5.1.3",
|
||||||
"vite-plugin-web-extension": "^1.1.3",
|
"web-ext": "^7.6.2",
|
||||||
"web-ext": "^6.7.0",
|
"xo": "^0.54.2"
|
||||||
"xo": "^0.48.0"
|
|
||||||
},
|
},
|
||||||
|
"prettier": "@bauke/prettier-config",
|
||||||
"stylelint": {
|
"stylelint": {
|
||||||
"extends": [
|
"extends": "@bauke/stylelint-config"
|
||||||
"stylelint-config-standard-scss"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"no-descending-specificity": null,
|
|
||||||
"string-quotes": "single"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
|
"extends": "@bauke/eslint-config",
|
||||||
"prettier": true,
|
"prettier": true,
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/naming-convention": "off"
|
|
||||||
},
|
|
||||||
"space": true
|
"space": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
7602
pnpm-lock.yaml
7602
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,35 +0,0 @@
|
||||||
import path from 'node:path';
|
|
||||||
import url from 'node:url';
|
|
||||||
|
|
||||||
import preact from '@preact/preset-vite';
|
|
||||||
import {defineConfig} from 'vite';
|
|
||||||
import webExtension from 'vite-plugin-web-extension';
|
|
||||||
|
|
||||||
const currentDir = path.dirname(url.fileURLToPath(import.meta.url));
|
|
||||||
|
|
||||||
const buildDir = path.join(currentDir, 'build');
|
|
||||||
const sourceDir = path.join(currentDir, 'source');
|
|
||||||
|
|
||||||
export default defineConfig({
|
|
||||||
build: {
|
|
||||||
outDir: buildDir,
|
|
||||||
sourcemap: 'inline',
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
preact(),
|
|
||||||
webExtension({
|
|
||||||
additionalInputs: ['options/user-label-editor.html'],
|
|
||||||
assets: 'assets',
|
|
||||||
browser: 'firefox',
|
|
||||||
manifest: path.join(sourceDir, 'manifest.json'),
|
|
||||||
webExtConfig: {
|
|
||||||
browserConsole: true,
|
|
||||||
firefoxProfile: 'firefox/',
|
|
||||||
keepProfileChanges: true,
|
|
||||||
startUrl: 'about:debugging#/runtime/this-firefox',
|
|
||||||
target: 'firefox-desktop',
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
root: sourceDir,
|
|
||||||
});
|
|
Loading…
Reference in New Issue