-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.71 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
{
"name": "rollcutter",
"version": "0.13.2",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run build:dist",
"build:dist": "tsc && node scripts/build-assets.mjs",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && eslint eslint.config.js scripts src tests",
"test": "npm run test:fast && npm run test:e2e",
"test:fast": "node tests/segment-matching.test.js && node tests/playback-integration.test.js && node tests/qa-misbehavior-discovery.test.js && node tests/playwright-coverage-quality.test.js && node tests/extension-load.test.js && node tests/extension-load-browser.test.js",
"test:extension-load": "node tests/extension-load.test.js",
"test:extension-load:browser": "node tests/extension-load-browser.test.js",
"test:segment": "node tests/segment-matching.test.js",
"test:playback": "node tests/playback-integration.test.js",
"test:e2e": "xvfb-run -a playwright test --project=fast",
"test:e2e:live": "ROLLCUTTER_ALLOW_CRUNCHYROLL_WATCH=1 ROLLCUTTER_LIVE_WATCH_DELAY_MS=${ROLLCUTTER_LIVE_WATCH_DELAY_MS:-60000} xvfb-run -a playwright test --project=live",
"test:release": "npm run test:fast && npm run test:e2e && npm run test:e2e:live",
"e2e:auth-refresh": "node scripts/e2e-auth-refresh.mjs",
"test:e2e:fast": "playwright test --project=fast",
"test:qa": "node tests/qa-misbehavior-discovery.test.js"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "1.60.0",
"@types/chrome": "0.1.40",
"@types/node": "25.7.0",
"@typescript-eslint/parser": "8.58.2",
"eslint": "9.39.4",
"globals": "16.5.0",
"typescript": "5.9.3"
},
"dependencies": {
"json5": "2.2.3"
}
}