-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.74 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
{
"name": "crestapps-softphone-extension",
"version": "0.1.13",
"private": true,
"description": "CrestApps Soft Phone — a floating, always-on browser window for the CrestApps soft phone that survives site navigation and rings when closed (Chrome + Firefox, MV3).",
"type": "module",
"scripts": {
"build": "node build.mjs --zip",
"build:chrome": "node build.mjs --target=chrome --zip",
"build:firefox": "node build.mjs --target=firefox --zip",
"watch": "node build.mjs --watch",
"bump": "npm version patch --no-git-tag-version",
"chrome-token": "node scripts/get-chrome-refresh-token.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.{ts,html,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"zip": "node build.mjs --prod --zip",
"start:firefox": "web-ext run --config web-ext-config.mjs",
"lint:ext": "web-ext lint --source-dir dist/firefox --self-hosted --no-config-discovery",
"clean": "node -e \"import('node:fs').then(fs=>fs.rmSync('dist',{recursive:true,force:true}))\""
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/chrome": "^0.0.287",
"@types/firefox-webext-browser": "^120.0.4",
"@types/webextension-polyfill": "^0.12.5",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"archiver": "^7.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.68.0",
"vitest": "^2.1.8",
"web-ext": "^8.3.0"
},
"dependencies": {
"@microsoft/signalr": "^8.0.7",
"webextension-polyfill": "^0.12.0"
}
}