-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@webdeveric/prevent-shortcut-takeover-web-ext",
"private": true,
"version": "0.3.2",
"license": "MIT",
"description": "Stop sites from taking over your keyboard shortcuts",
"keywords": [
"WebExtension",
"web-extension",
"prevent",
"shortcut",
"takeover"
],
"author": {
"email": "[email protected]",
"name": "Eric King",
"url": "http://webdeveric.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/webdeveric/prevent-shortcut-takeover-web-ext.git"
},
"bugs": {
"url": "https://github.com/webdeveric/prevent-shortcut-takeover-web-ext/issues"
},
"homepage": "https://github.com/webdeveric/prevent-shortcut-takeover-web-ext",
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"scripts": {
"lint": "eslint ./*.{js,mjs,cjs,ts,mts,cts} ./src --ext .ts,.tsx,.js --fix",
"spellcheck": "cspell \"./{.github,src,typings}/**/*\" \"./*.{md,js,mjs,cjs,ts,mts,cts,json}\"",
"format": "prettier --write .",
"web-ext": "web-ext build",
"postweb-ext": "web-ext lint",
"prebuild": "pnpm spellcheck",
"build": "NODE_OPTIONS='--experimental-json-modules --no-warnings' NODE_ENV=production webpack",
"start": "NODE_OPTIONS='--experimental-json-modules --no-warnings' NODE_ENV=development webpack --watch",
"presign": "pnpm build",
"sign": "web-ext sign",
"test": "vitest --passWithNoTests",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"version": "sync-package-version ./src/manifest.json | xargs git add",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"*.{js,jsx,ts,tsx,json,md,css}": [
"cspell lint --no-progress --no-summary --no-must-find-files",
"prettier --write"
]
},
"prettier": "@webdeveric/prettier-config",
"browserslist": [
"extends @webdeveric/browserslist-config/web-extensions"
],
"dependencies": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@types/webextension-polyfill": "^0.12.1",
"@webdeveric/utils": "^0.36.0",
"classnames": "^2.5.1",
"react": "19.0.0-rc-9c6806964f-20240703",
"react-dom": "19.0.0-rc-9c6806964f-20240703"
},
"devDependencies": {
"@swc/core": "^1.7.24",
"@vitest/coverage-v8": "^2.0.5",
"@webdeveric/browserslist-config": "^0.2.0",
"@webdeveric/eslint-config-ts": "^0.11.0",
"@webdeveric/prettier-config": "^0.3.0",
"@webdeveric/sync-package-version": "^0.5.0",
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cspell": "^8.14.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-no-unsanitized": "^4.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"happy-dom": "^15.7.3",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"postcss-nested": "^6.2.0",
"prettier": "^3.3.3",
"swc-loader": "^0.2.6",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"web-ext": "^8.2.0",
"web-ext-plugin": "^2.10.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.94.0",
"webpack-assets-manifest": "^5.2.1",
"webpack-cli": "^5.1.4"
}
}