aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 5ac057e73c9b11feba2782b2d0438ba267b9340d (plain)
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
{
  "name": "thunderbird-ai-compose",
  "version": "0.1.0",
  "description": "Thunderbird Mail Extension that helps you compose emails using AI",
  "keywords": [
    "Thunderbird",
    "AI",
    "Compose",
    "Mail",
    "Extension"
  ],
  "homepage": "https://github.com/luciferreeves/thunderbird-ai-compose#readme",
  "bugs": {
    "url": "https://github.com/luciferreeves/thunderbird-ai-compose/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/luciferreeves/thunderbird-ai-compose.git"
  },
  "license": "MIT",
  "author": "Bobby <[email protected]>",
  "scripts": {
    "clean": "rm -rf build && rm -rf release",
    "build:ts": "tsup src/background.ts src/popup/popup.ts src/options/options.ts --format cjs --out-dir build --splitting false --sourcemap",
    "build:static": "cp src/manifest.json build/ && cp -r src/popup build/ && cp -r src/options build/ && cp -r icons build/ && cp node_modules/webextension-polyfill/dist/browser-polyfill.js build/",
    "build": "npm run clean && npm run build:ts && npm run build:static",
    "bundle": "ts-node bundle.ts",
    "release": "npm run build && npm run bundle"
  },
  "dependencies": {
    "webextension-polyfill": "^0.12.0"
  },
  "devDependencies": {
    "@types/adm-zip": "^0.5.7",
    "@types/firefox-webext-browser": "^120.0.4",
    "@types/node": "^24.5.2",
    "@types/webextension-polyfill": "^0.12.3",
    "@typescript-eslint/eslint-plugin": "^8.44.1",
    "@typescript-eslint/parser": "^8.44.1",
    "adm-zip": "^0.5.16",
    "eslint": "^9.36.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "prettier": "^3.6.2",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2"
  }
}