forked from Kagu-chan/anki-jpdb.reader
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.18 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.18 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
{
"name": "jiten.reader",
"version": "1.0.7",
"description": "Learn Japanese by immersion by parsing texts, getting definitions for words and tracking your knowledge.",
"private": true,
"scripts": {
"build": "node scripts/build.mjs",
"watch": "node scripts/build.mjs --watch",
"pack": "node scripts/build.mjs --pack",
"preversion": "eslint src && npm run lint:ff && npm run build",
"version": "node scripts/version.mjs && npm run changelog && git add src/manifest.json",
"postversion": "npm run release",
"changelog": "tsc changelog/changelog.ts && node scripts/changelog.mjs && git add CHANGELOG.md src/views/changelog.html",
"release": "node scripts/build.mjs --pack --ff-submission",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:ff": "node scripts/build.mjs firefox && web-ext lint --source-dir jiten.reader"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sirush/JitenReader.git"
},
"keywords": [
"anki",
"jiten",
"mining",
"parser"
],
"author": "Sirus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sirush/JitenReader/issues"
},
"homepage": "https://github.com/Sirush/JitenReader#readme",
"browserslist": [
"chrome >= 116"
],
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@types/chrome": "^0.1.29",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"ajv": "^8.18.0",
"ajv-keywords": "^5.1.0",
"browserlist": "^1.0.1",
"copy-webpack-plugin": "^13.0.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^56.1.2",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.0.3",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.3",
"sass": "^1.94.0",
"sass-loader": "^16.0.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"web-ext": "^8.10.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"zip-a-folder": "^3.1.9"
}
}