-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.45 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
{
"name": "light-session",
"version": "1.7.4",
"type": "module",
"description": "LightSession Pro - Browser extension to optimize ChatGPT performance",
"engines": {
"node": ">=24.10.0"
},
"scripts": {
"build": "node build.cjs",
"build:firefox": "node build.cjs --target=firefox",
"build:chrome": "node build.cjs --target=chrome",
"build:types": "tsc --noEmit",
"build:prod": "rm -f extension/.dev && NODE_ENV=production node build.cjs",
"build:prod:firefox": "rm -f extension/.dev && NODE_ENV=production node build.cjs --target=firefox",
"build:prod:chrome": "rm -f extension/.dev && NODE_ENV=production node build.cjs --target=chrome",
"watch": "node build.cjs --watch",
"watch:chrome": "node build.cjs --target=chrome --watch",
"lint": "eslint extension/src",
"lint:fix": "eslint extension/src --fix",
"format": "prettier --write 'extension/src/**/*.ts'",
"format:check": "prettier --check 'extension/src/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"dev": "npm run build:firefox && web-ext run --source-dir=extension --firefox=firefoxdeveloperedition --start-url='https://chat.openai.com'",
"dev:stable": "npm run build:firefox && web-ext run --source-dir=extension --firefox=firefox --start-url='https://chat.openai.com'",
"package": "npm run build:prod:firefox && web-ext build --source-dir=extension --artifacts-dir=web-ext-artifacts",
"package:chrome": "npm run build:prod:chrome && cd extension && zip -r ../web-ext-artifacts/lightsession-chrome.zip . -x '*.ts' -x 'src/*' -x 'manifest.*.json'",
"clean": "rm -rf extension/dist extension/popup/popup.js web-ext-artifacts"
},
"keywords": [
"firefox",
"extension",
"chatgpt",
"performance",
"webextension",
"firefox-addon",
"browser-extension",
"dom-optimization",
"privacy",
"open-source",
"chatgpt-extension",
"typescript",
"firefox-extension",
"performance-optimization",
"lag-fix"
],
"author": "LightSession Contributors",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/chrome": "^0.1.32",
"@types/firefox-webext-browser": "^143.0.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"happy-dom": "^20.0.11",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16",
"web-ext": "^9.2.0"
}
}