-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "firefox-workspaces",
"version": "0.2.0",
"author": {
"name": "Kasukabe Tsumugi",
"email": "futami16237@gmail.com"
},
"purpose": "plugin",
"description": "Implement workspace feature similar to Edge browser in FireFox",
"description_zh": "在FireFox中实现类似Edge浏览器的工作区功能",
"type": "module",
"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"
},
"files": [
"dist"
],
"homepage": "https://github.com/baendlorel/firefox-workspaces#readme",
"repository": {
"type": "git",
"url": "https://github.com/baendlorel/firefox-workspaces"
},
"keywords": [
"typescript",
"javascript"
],
"scripts": {
"lines": "clear && find ./src -type f \\( -name \"*.ts\" -o -name \"*.tsx\" -o -name \"*.js\" -o -name \"*.mjs\" -o -name \"*.cjs\" -o -name \"*.cpp\" -o -name \"*.h\" -o -name \"*.py\" -o -name \"*.css\" -o -name \"*.rs\" -o -name \"*.rc\" \\) | xargs wc -l",
"zip": "tsx .scripts/zip.ts",
"package": "tsx .scripts/pack.ts",
"dev": "vite",
"build": "tsx .scripts/prebuild.ts && tsc && vite build",
"preview": "vite preview",
"test": "clear & vitest",
"lint": "oxlint .",
"exlint": "web-ext lint",
"check": "tsc --noEmit",
"cover": "clear & vitest --coverage"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"@types/chrome": "^0.1.22",
"@types/firefox-webext-browser": "^120.0.4",
"@vitest/coverage-v8": "^3.2.4",
"glob": "^11.0.3",
"oxlint": "^1.16.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup-plugin-const-enum": "^1.1.0",
"rollup-plugin-func-macro": "^1.1.0",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vitest": "^3.2.4"
},
"dependencies": {
"minimal-event-bus": "^1.0.0"
}
}