-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.97 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"*note*": [
"This package.json is here for build config",
"Version info is managed as git tags and embedded on publish",
"See CONTRIBUTING.md for details"
],
"name": "@exteditor/ghostbird",
"license": "MPL-2.0 OR GPL-3.0-or-later",
"private": true,
"type": "module",
"packageManager": "yarn@4.10.3",
"engines": {
"thunderbird": ">= 128"
},
"homepage": "https://exteditor.github.io/ghostbird/",
"bugs": "https://github.com/exteditor/ghostbird/issues/",
"funding": "https://give.thunderbird.net/",
"repository": {
"type": "git",
"url": "github:exteditor/ghostbird"
},
"scripts": {
"sdk": "yarn dlx @yarnpkg/sdks",
"archive": "NAME=$(basename dist/*.xpi .xpi)-src && git archive --output=dist/${NAME}.zip --prefix=${NAME}/ext/ --add-file=dist/ext/manifest.json --prefix=${NAME}/ HEAD",
"barrelsby": "node --experimental-strip-types tools/barrelsby.ts",
"check": "run check-type && biome check --error-on-warnings",
"fix": "biome check --write",
"doc": "run check-type && typedoc",
"postinstall": "run generate-index-ts",
"format": "biome format --write",
"lint": "biome lint",
"start": "web-ext run",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:list": "vitest list",
"test:sanity": "vitest run sanity",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"check-type": "tsc --build --emitDeclarationOnly",
"build-js": "tsdown --config=tools/tsdown_config.ts",
"build-xpi": "web-ext build",
"build": "run check && run test && run build-js && run build-xpi",
"dev": "run watch & run start",
"fmt": "run format",
"generate-index-ts": "run barrelsby",
"index-ts": "run barrelsby",
"cov": "run test:coverage",
"js": "run build-js",
"tsdown": "run build-js",
"watch": "run build-js --watch",
"xpi": "run build-xpi"
},
"webExt": {
"sourceDir": "dist/ext/",
"artifactsDir": "dist/",
"ignoreFiles": [
"!**"
],
"build": {
"filename": "{short_name}-{version}.xpi"
},
"run": {
"devtools": true,
"firefox": "thunderbird"
}
},
"dependencies": {
"@std/text": "jsr:^1.0.16",
"@std/toml": "jsr:^1.0.10",
"webext-events": "^3.1.1",
"webext-options-sync": "^4.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@codecov/rollup-plugin": "^1.9.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.3.0",
"@types/thunderbird-webext-browser": "^127.0.0",
"@vitest/coverage-v8": "^3.2.4",
"barrelsby": "^2.8.1",
"git-describe": "^4.1.1",
"glob": "^10",
"jsdom": "^27.0.1",
"rolldown": "latest",
"toposort-class": "^1.0.1",
"tsdown": "^0.15.9",
"typedoc": "^0.28.12",
"typedoc-plugin-mdn-links": "^5.0.9",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"web-ext": "^9.0.0"
},
"peerDependencies": {
"@vitest/ui": "*"
},
"peerDependenciesMeta": {
"@vitest/ui": {
"optional": true
}
}
}