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": "yomitan",
"version": "0.0.0",
"description": "Japanese pop-up dictionary extension for Chrome and Firefox.",
"directories": {
"test": "test"
},
"type": "module",
"scripts": {
"build": "node ./dev/bin/build.js",
"build-libs": "node ./dev/bin/build-libs.js",
"test": "npm run test-lint-js && npm run test-lint-css && npm run test-lint-html && npm run test-code && npm run test-build",
"test-lint-js": "npx eslint .",
"test-lint-css": "npx stylelint \"ext/**/*.css\" \"test/**/*.css\" \"dev/**/*.css\"",
"test-lint-html": "npx html-validate \"ext/**/*.html\" \"test/**/*.html\" \"dev/**/*.html\"",
"test-code": "vitest run",
"test-build": "node ./dev/bin/build.js --dry-run --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themoeway/yomitan.git"
},
"license": "GPL-3.0-or-later",
"licenses": [
{
"type": "GPL-3.0-or-later",
"url": "https://www.gnu.org/licenses/gpl-3.0.html"
}
],
"bugs": {
"url": "https://github.com/themoeway/yomitan/issues"
},
"homepage": "https://github.com/themoeway/yomitan/",
"webExt": {
"sourceDir": "ext"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"@vitest/coverage-v8": "^0.34.6",
"@zip.js/zip.js": "^2.7.30",
"ajv": "^8.12.0",
"css": "^3.0.0",
"dexie": "^3.2.4",
"dexie-export-import": "^4.0.7",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-no-unsanitized": "^4.0.1",
"eslint-plugin-vitest": "^0.3.9",
"fake-indexeddb": "^5.0.1",
"handlebars": "^4.7.8",
"html-validate": "^8.7.0",
"jsdom": "^22.1.0",
"jszip": "^3.10.1",
"parse5": "^7.1.2",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^13.0.0",
"vitest": "^0.34.6",
"wanakana": "^5.2.0"
}
}
|