-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "xtension",
"version": "1.0.0",
"description": "Browser extension example. Typescript, E2E tests, icon generation, automatic i18n and ESBuild",
"homepage": "https://essentialkit.org/xtension/",
"scripts": {
"build": "node tools/esbuild.js --task=build",
"test": "node tools/esbuild.js --task=test",
"watch": "node tools/esbuild.js --task=watch",
"start": "node tools/esbuild.js --task=start",
"start:firefox": "node tools/esbuild.js --task=start --browser=firefox",
"format": "npx prettier . --write",
"generateIcons": "node tools/esbuild.js --task=resize --icon",
"updateTranslations": "node tools/esbuild.js --task=translate"
},
"author": "Justice Ogbonna",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/essentialkit/xtension"
},
"engines": {
"npm": ">=10.9.0",
"node": ">=22.12.0"
},
"keywords": [
"chrome",
"firefox",
"opera",
"safari",
"addon",
"extension",
"starter",
"boilerplate"
],
"overrides": {
"sharp": "0.33.5"
},
"devDependencies": {
"@mdn/browser-compat-data": "^5.6.24",
"@types/chrome": "^0.0.246",
"@types/jasmine": "^5.1.0",
"@types/node": "^20.8.3",
"@types/puppeteer": "^7.0.4",
"axios": "^1.7.9",
"esbuild": "^0.25.0",
"google-translate-api-x": "^10.6.7",
"jasmine": "^5.1.0",
"jimp": "^0.22.10",
"jsdom": "^24.0.0",
"looks-same": "^9.0.1",
"node-fetch": "^3.3.2",
"node-stream-zip": "^1.15.0",
"prettier": "3.0.3",
"puppeteer": "^23.5.3",
"typescript": "^5.7.2"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.6.0",
"bootstrap": "^5.3.2"
}
}