-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "wxt-module-console-forward",
"version": "1.3.6",
"description": "WXT module for forwarding console logs from web extension scripts to dev server",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"type": "module",
"files": [
"dist",
"src"
],
"keywords": [
"wxt",
"web-extension",
"console",
"logging",
"development",
"debugging"
],
"author": "WXT Module Console Forward",
"license": "MIT",
"homepage": "https://github.com/0xBigBoss/wxt-module-console-forward#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/0xBigBoss/wxt-module-console-forward.git"
},
"bugs": {
"url": "https://github.com/0xBigBoss/wxt-module-console-forward/issues"
},
"scripts": {
"dev": "cd example-extension && bun run dev",
"build": "unbuild",
"prepare": "bun run build",
"typecheck": "tsc --noEmit",
"test:example": "cd example-extension && bun run dev",
"test": "playwright test"
},
"dependencies": {
"magic-string": "^0.30.21",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/bun": "^1.2.21",
"@types/micromatch": "^4.0.9",
"playwright": "^1.55.0",
"typescript": "^5.9.2",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"wxt": ">=0.19.0",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"workspaces": [
"example-extension"
]
}