-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "mitaka",
"version": "2.3.2",
"type": "module",
"description": "A browser extension for searching IP, domain, URL, hash, etc. via the context menu.",
"scripts": {
"build:firefox": "wxt build -b firefox --mv3",
"build": "wxt build",
"compile": "vue-tsc --noEmit",
"dev:firefox": "wxt -b firefox",
"dev": "wxt",
"format": "prettier --write src/ tests/",
"lint": "eslint src tests --fix",
"postinstall": "wxt prepare",
"test": "vitest",
"coverage": "vitest run --coverage",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip": "wxt zip"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format"
]
},
"author": "ninoseki",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ninoseki/mitaka.git"
},
"dependencies": {
"@github/mini-throttle": "^2.1.1",
"@webext-core/messaging": "^2.1.0",
"bulma": "^1.0.2",
"ioc-extractor": "^8.1.2",
"js-base64": "^3.7.7",
"js-sha256": "^0.11.0",
"just-truncate": "^2.2.0",
"neverthrow": "8.1.1",
"valibot": "^0.42.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@ninoseki/eslint-plugin-neverthrow": "^0.0.1",
"@types/chrome": "^0.0.283",
"@types/node": "^22.9.2",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"@vue/eslint-config-typescript": "^14.1.3",
"@wxt-dev/module-vue": "^1.0.2",
"axios": "^1.7.7",
"coveralls": "3.1.1",
"eslint": "^9.15.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^9.31.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5",
"wxt": "^0.19.16"
}
}