forked from EhTagTranslation/EhSyringe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.24 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
{
"name": "ehsyringe",
"displayName": "EhSyringe",
"version": "2.9.11",
"description": "E 站注射器,将中文翻译注入到 E 站体内。",
"author": "EhTagTranslation",
"repository": {
"type": "git",
"url": "git+https://github.com/EhTagTranslation/EhSyringe.git"
},
"license": "MIT",
"bugs": "https://github.com/EhTagTranslation/EhSyringe/issues",
"homepage": "https://github.com/EhTagTranslation/EhSyringe",
"type": "module",
"scripts": {
"start:monkey": "webpack serve --mode=development --env type=user-script",
"start:ext": "webpack --mode=development --watch --env type=web-ext",
"start:chrome": "yarn start:ext --env vendor=chrome",
"start:firefox": "yarn start:ext --env vendor=firefox",
"build": "webpack --mode=production",
"build:monkey": "yarn build --env type=user-script",
"build:ext": "yarn build --env type=web-ext",
"build:chrome": "yarn build:ext --env vendor=chrome && web-ext build -s dist -a releases -n ehsyringe.chrome.zip -o",
"build:firefox": "yarn build:ext --env vendor=firefox && web-ext build -s dist -a releases -n ehsyringe.firefox.xpi -o",
"lint": "eslint ./src/**/*.ts",
"format": "prettier --ignore-path .gitignore --write .",
"clean": "rimraf dist releases"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-transform-runtime": "^7.22.2",
"@babel/preset-env": "^7.22.2",
"@babel/runtime": "^7.22.3",
"@types/chrome": "^0.0.237",
"@types/escape-html": "^1.0.2",
"@types/node": "^20.2.5",
"@types/tampermonkey": "^4.0.10",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@webextension-toolbox/webpack-webextension-plugin": "^3.0.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^7.1.1",
"glob": "^10.2.6",
"html-webpack-plugin": "^5.5.1",
"less": "^4.1.3",
"less-loader": "^11.1.1",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.2",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"semver": "^7.5.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"type-fest": "^3.11.0",
"typescript": "^5.0.4",
"web-ext": "^7.6.2",
"webpack": "^5.84.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-userscript": "^2.5.8",
"yargs": "^17.7.2"
},
"dependencies": {
"core-js": "^3.30.2",
"emoji-regex": "^10.2.1",
"escape-html": "^1.0.3",
"idb-keyval": "^6.2.1",
"lit-html": "^2.7.4",
"rxjs": "^7.8.1",
"tslib": "^2.5.2",
"typedi": "^0.10.0",
"webextension-polyfill": "^0.10.0"
}
}