-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
84 lines (84 loc) · 2.28 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
{
"name": "xtranslate",
"version": "4.0.0",
"scripts": {
"compile": "rm -rf ./dist && npm run unzip && webpack",
"dev": "npm run compile -- --env mode=development --watch",
"build": "npm run compile -- --env mode=production --progress",
"unzip": "[ -d assets/pdfjs ] || unzip plugins/pdfjs.zip -d assets -x \"__MACOSX/*\"",
"update-deps": "npx npm-check-updates -u",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": true,
"setupFiles": [
"<rootDir>/jest.setup.ts"
]
},
"engines": {
"node": ">=20"
},
"keywords": [
"chrome",
"extension",
"translate",
"languages",
"learning",
"studying",
"education",
"productivity"
],
"author": "ixrock",
"repository": "https://github.com/ixrock/XTranslate.git",
"license": "MIT",
"dependencies": {
"@fluent/bundle": "^0.18.0",
"@fluent/dom": "^0.10.0",
"@types/chrome": "^0.0.287",
"@types/hoist-non-react-statics": "^3.3.6",
"@types/html-webpack-plugin": "^3.2.9",
"@types/jest": "^29.5.14",
"@types/js-md5": "^0.7.2",
"@types/lodash": "^4.17.13",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^22.10.1",
"@types/pdfjs-dist": "^2.10.378",
"@types/react": "^19.0.1",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^19.0.1",
"@types/webpack": "^5.28.5",
"auto-bind": "^5.0.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"flag-icons": "^7.2.3",
"flex.box": "^3.4.4",
"hoist-non-react-statics": "^3.3.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-md5": "^0.8.3",
"lodash": "^4.17.21",
"marked": "^15.0.3",
"mellowtel": "^1.5.2",
"mini-css-extract-plugin": "^2.9.2",
"mobx": "^6.13.5",
"mobx-observable-history": "^2.0.3",
"mobx-react": "^9.1.1",
"openai": "^4.76.0",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-select": "^5.8.3",
"sass": "^1.82.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
}
}