-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "myhover-custom-translator",
"version": "1.0.0",
"type": "module",
"description": "Extension de navigateur pour la traduction au survol avec dictionnaire personnalisable",
"main": "dist/content.js",
"scripts": {
"build": "tsc && node build.js",
"build:firefox": "tsc && rimraf web-ext-artifacts && web-ext build --source-dir dist",
"watch": "tsc --watch",
"clean": "rimraf dist",
"dev": "npm run clean && npm run build",
"dev:firefox": "npm run build && web-ext run --source-dir dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:web-ext": "web-ext lint --source-dir dist"
},
"keywords": [
"extension",
"browser",
"translation",
"hover",
"chrome",
"firefox",
"typescript"
],
"author": "GaboFlo",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.1.6",
"@types/node": "^24.4.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"web-ext": "^8.9.0"
},
"engines": {
"node": ">=18.0.0"
}
}