-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "mitaka",
"version": "0.0.0",
"description": "A browser extension for searching IP, domain, URL, hash, etc. via the context menu.",
"license": "MIT",
"author": "ninoseki",
"repository": {
"type": "git",
"url": "https://github.com/ninoseki/mitaka.git"
},
"type": "module",
"scripts": {
"build:firefox": "run-s build -- --mv3 -b firefox",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "wxt build",
"type-check": "vue-tsc --build",
"dev:firefox": "wxt -b firefox",
"dev": "wxt",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache",
"format": "oxfmt src/",
"postinstall": "wxt prepare",
"test": "vitest",
"coverage": "vitest run --coverage",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip": "wxt zip"
},
"dependencies": {
"@github/mini-throttle": "^2.1.1",
"@webext-core/messaging": "^4.0.0",
"ioc-extractor": "^8.2.0",
"js-base64": "^3.9.3",
"js-sha256": "^1.0.0",
"just-truncate": "^2.2.0",
"neverthrow": "8.2.0",
"valibot": "^1.4.2",
"vue": "^3.5.42"
},
"devDependencies": {
"@ninoseki/eslint-plugin-neverthrow": "^0.3.1",
"@tailwindcss/vite": "^4.3.3",
"@types/chrome": "^0.1.38",
"@types/node": "^24.10.4",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/eslint-plugin": "^1.6.27",
"@vue/eslint-config-typescript": "^14.9.0",
"@wxt-dev/auto-icons": "^1.1.2",
"@wxt-dev/module-vue": "^1.0.3",
"coveralls": "3.1.1",
"daisyui": "^5.7.22",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "^1.80.0",
"eslint-plugin-regexp": "^3.2.0",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-vue": "^10.10.0",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"npm-run-all2": "^9.0.3",
"oxfmt": "^0.65.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"typescript-eslint": "^8.68.0",
"vitest": "^4.1.11",
"vue-tsc": "^3.3.11",
"wxt": "^0.21.4"
},
"lint-staged": {
"*.ts": [
"npx oxlint --fix",
"npx oxfmt"
]
}
}