-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.76 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.76 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "10ten-ja-reader",
"version": "1.26.1",
"description": "Translate Japanese by hovering over words.",
"keywords": [
"rikaichamp",
"rikaichan",
"rikaikun",
"japanese",
"dictionary",
"translation"
],
"homepage": "https://github.com/birchill/10ten-ja-reader#readme",
"bugs": {
"url": "https://github.com/birchill/10ten-ja-reader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/birchill/10ten-ja-reader.git"
},
"license": "GPL-3.0-or-later",
"author": "Birchill, Inc.",
"type": "module",
"scripts": {
"build:chrome": "rspack --env target=chrome",
"build:chrome-electron": "rspack --env target=chrome-electron",
"build:edge": "rspack --env target=edge",
"build:firefox": "rspack",
"build:safari": "rspack --env target=safari",
"build:thunderbird": "rspack --env target=thunderbird",
"check-keys": "tsx scripts/check-keys",
"cosmos": "node --import=./cosmos-import.js node_modules/react-cosmos/bin/cosmos.js",
"cosmos-export": "node --import=./cosmos-import.js node_modules/react-cosmos/bin/cosmos-export.js",
"postinstall": "if-env RELEASE_BUILD=1 || husky",
"lint": "web-ext lint && eslint src/",
"package": "rspack --env package",
"package:chrome": "rspack --env target=chrome --env package",
"package:chrome-electron": "rspack --env target=chrome-electron --env package",
"package:edge": "rspack --env target=edge --env package",
"package:firefox": "rspack --env package",
"package:thunderbird": "rspack --env target=thunderbird --env package",
"release": "release-it --verbose",
"sort-i18n-keys": "tsx scripts/sort-keys",
"start:chrome": "rspack -w --env target=chrome",
"start:edge": "rspack -w --env target=chrome --env chromium=edge",
"start:firefox": "rspack -w",
"sync-manifest-version": "tsx scripts/sync-manifest-version",
"test": "vitest run",
"test:chrome": "vitest run --project browser --browser chrome",
"test:firefox": "vitest run --project browser --browser firefox",
"test:unit": "vitest run --project unit",
"update-snapshot": "tsx scripts/update-snapshot",
"version": "pnpm sync-manifest-version && git add manifest.json.src && tsx scripts/sync-xcode && git add xcode13/\"10ten Japanese Reader\".xcodeproj/project.pbxproj",
"zip-src": "tsx scripts/zip-src"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"_locales/**/messages.json": [
"pnpm sort-i18n-keys"
]
},
"dependencies": {
"@birchill/bugsnag-zero": "0.8.1",
"@birchill/discriminator": "0.3.1",
"@birchill/jpdict-idb": "3.3.0",
"@birchill/normal-jp": "1.6.0",
"classname-variants": "1.7.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"lru_map": "0.4.1",
"preact": "10.29.1",
"superstruct": "2.0.2",
"typescript": "6.0.3",
"web-ext": "10.0.0",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.1.0",
"@eslint/js": "10.0.1",
"@release-it/keep-a-changelog": "7.0.1",
"@rspack/cli": "1.7.11",
"@rspack/core": "1.7.11",
"@tailwindcss/postcss": "4.2.2",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/archiver": "7.0.0",
"@types/mocha": "10.0.10",
"@types/webextension-polyfill": "0.12.5",
"@types/yargs": "17.0.35",
"@typescript-eslint/parser": "8.58.2",
"@vitest/browser-webdriverio": "4.1.4",
"@vitest/eslint-plugin": "1.6.16",
"archiver": "7.0.1",
"css-loader": "7.1.4",
"eslint": "10.2.1",
"eslint-plugin-react": "7.37.5",
"fake-indexeddb": "6.2.5",
"fast-glob": "3.3.3",
"fetch-mock": "12.6.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "9.1.0",
"globals": "17.5.0",
"if-env": "1.0.4",
"jsdom": "^29.0.0",
"knip": "6.3.1",
"mocha": "11.7.5",
"playwright": "1.59.1",
"postcss": "8.5.10",
"postcss-load-config": "6.0.1",
"postcss-loader": "8.2.1",
"prettier": "3.8.3",
"prettier-plugin-organize-attributes": "1.0.0",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-tailwindcss": "0.7.2",
"react-cosmos": "7.2.0",
"react-cosmos-plugin-boolean-input": "7.2.0",
"react-cosmos-plugin-rspack": "2.0.2",
"release-it": "20.0.0",
"semver-parser": "4.1.8",
"source-map-loader": "5.0.0",
"tailwindcss": "4.2.2",
"terser-webpack-plugin": "5.4.0",
"tsx": "4.21.0",
"typescript-eslint": "8.58.2",
"vitest": "4.1.4",
"web-ext-plugin": "2.13.0",
"webpack": "5.105.4",
"webpack-bugsnag-plugins": "2.2.3",
"webpack-preprocessor": "0.1.12",
"webpack-utf8-bom": "1.4.0",
"xmlbuilder2": "4.0.3",
"yargs": "18.0.0"
},
"webExt": {
"sourceDir": "dist-firefox"
}
}