-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.13 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.13 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
{
"name": "buzzchat",
"version": "1.2.0",
"description": "Browser extension for automating live selling chat with auto-welcome, timer messages, FAQ auto-replies, and giveaway automation. Works on Chrome and Firefox.",
"main": "src/background/background.js",
"scripts": {
"serve": "node test/serve.js",
"build": "node scripts/build.js",
"build:prod": "node scripts/build.js --minify",
"build:chrome": "node scripts/build.js chrome",
"build:firefox": "node scripts/build.js firefox",
"build:zip": "node scripts/build.js --zip",
"build:bundle": "rollup -c",
"build:bundle:prod": "NODE_ENV=production rollup -c",
"build:bundle:watch": "rollup -c --watch",
"icons": "node scripts/generate-icons.js",
"zip": "zip -r buzzchat.zip manifest.json assets src README.md",
"lint": "eslint src/ --ext .js",
"lint:fix": "eslint src/ --ext .js --fix",
"test": "npx playwright test",
"test:popup": "npx playwright test popup",
"test:content": "npx playwright test content",
"test:e2e": "npx playwright test e2e",
"test:stress": "npx playwright test stress",
"test:unit": "npx playwright test tests/unit",
"test:headed": "npx playwright test --headed",
"test:real": "npx playwright test real-whatnot --headed --timeout=60000",
"test:debug": "npx playwright test --debug",
"test:report": "npx playwright show-report"
},
"keywords": [
"whatnot",
"chrome-extension",
"live-selling",
"chat-bot",
"automation",
"reselling"
],
"author": "Jake Liu",
"license": "MIT",
"homepage": "https://github.com/JakeLiuMe/buzzchat#readme",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"archiver": "^6.0.1",
"clean-css": "^5.3.3",
"eslint": "^8.56.0",
"playwright": "^1.57.0",
"rollup": "^4.9.6",
"sharp": "^0.33.2",
"terser": "^5.31.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JakeLiuMe/buzzchat"
},
"bugs": {
"url": "https://github.com/JakeLiuMe/buzzchat/issues"
}
}