-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1022 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1022 Bytes
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
{
"name": "chrome-activity-reader",
"version": "1.0.0",
"description": "Chrome extension MVP that tracks tab-level activity and shows what you worked on over the last 1 hour, 4 hours, 1 day, and 7 days.",
"type": "module",
"scripts": {
"test:unit": "node --test tests/unit/*.test.js",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:smoke:extension": "node scripts/extension-smoke-test.mjs",
"test:flows:extension": "node scripts/extension-flow-matrix-test.mjs",
"test:validate:long": "node scripts/long-duration-extension-validation.mjs",
"test:all": "npm run test:unit && npm run test:e2e"
},
"keywords": [
"chrome-extension",
"mv3",
"tab-tracking",
"activity-tracker",
"productivity",
"playwright"
],
"author": "Baboonzero",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"fake-indexeddb": "^6.2.5",
"http-server": "^14.1.1"
}
}