-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "split-translator",
"version": "0.1.0",
"description": "Chrome and Edge browser extension for split view with translation",
"main": "background.js",
"homepage": "https://github.com/SIkebe/split-translator#readme",
"repository": {
"type": "git",
"url": "https://github.com/SIkebe/split-translator.git"
},
"bugs": {
"url": "https://github.com/SIkebe/split-translator/issues"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"package": "npm run build && build-package.bat",
"clean": "rimraf dist",
"dev": "npm run clean && npm run build && echo 'Development build complete. Load dist/ folder in Chrome Extensions.'",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"test:fast": "jest --no-coverage --passWithNoTests --maxWorkers=4 --silent",
"test:unit": "jest tests/unit --passWithNoTests --no-coverage",
"test:unit:fast": "jest tests/unit --passWithNoTests --no-coverage --silent --maxWorkers=4",
"test:integration": "jest tests/integration --passWithNoTests",
"test:silent": "jest --silent --passWithNoTests"
},
"keywords": [
"browser-extension",
"chrome",
"edge",
"translation",
"split-view",
"translator",
"google-translate",
"productivity",
"multi-monitor"
],
"author": {
"name": "SIkebe",
"url": "https://github.com/SIkebe"
},
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.0.329",
"@types/jest": "29.5.12",
"@types/node": "20.14.9",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"rimraf": "6.0.1",
"ts-jest": "29.1.5",
"typescript": "5.8.3"
},
"files": [
"manifest.json",
"popup.html",
"dist/popup.js",
"dist/background.js",
"icons/",
"LICENSE",
"PRIVACY_POLICY.md",
"README.md"
]
}