-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.88 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
66
67
{
"name": "filtertube",
"version": "3.3.3",
"description": "Restore peace of mind to your digital video experience.",
"main": "js/background.js",
"scripts": {
"build:nanah-vendor": "node scripts/build-nanah-vendor.mjs",
"build:ui": "node scripts/build-extension-ui.mjs",
"dev": "node build.js",
"build": "node build.js",
"build:chrome": "node build.js chrome",
"build:firefox": "node build.js firefox",
"build:opera": "node build.js opera",
"sync:native-runtime": "node scripts/sync-native-runtime.mjs",
"managed:extension-smoke": "node scripts/create-managed-extension-installed-smoke-artifact.mjs",
"managed:native-handoff": "node scripts/create-managed-native-runtime-sync-handoff.mjs",
"managed:provider-ownership": "node scripts/create-managed-pickup-provider-ownership-artifact.mjs",
"managed:app-parity-smoke": "node scripts/create-managed-app-parity-smoke-artifact.mjs",
"managed:provider": "node scripts/managed-delivery-provider.mjs",
"test": "node scripts/run-test-lane.mjs smoke",
"audit:runtime": "node --test tests/runtime/*.test.mjs",
"test:release": "node scripts/run-test-lane.mjs release",
"test:whitelist": "node scripts/run-test-lane.mjs whitelist",
"test:blocking": "node scripts/run-test-lane.mjs blocking",
"test:json": "node scripts/run-test-lane.mjs json",
"test:dom": "node scripts/run-test-lane.mjs dom",
"test:menu": "node scripts/run-test-lane.mjs menu",
"test:performance": "node scripts/run-test-lane.mjs performance",
"test:settings": "node scripts/run-test-lane.mjs settings",
"test:smoke": "node scripts/run-test-lane.mjs smoke",
"lanes:changed": "node scripts/run-test-lane.mjs --changed",
"test:changed": "node scripts/run-test-lane.mjs --run-changed",
"test:audit-drift": "node scripts/audit-proof-drift.mjs --lane-owned",
"verify:managed-app-policy": "node scripts/verify-managed-app-policy-contract.mjs",
"smoke:youtube": "node docs/audit/artifacts/release-live-youtube-spa-smoke/run-live-smoke.mjs",
"smoke:youtube:verify": "node docs/audit/artifacts/release-live-youtube-spa-smoke/verify-live-smoke-artifact.mjs",
"dev:chrome": "cp manifest.chrome.json manifest.json",
"dev:firefox": "cp manifest.firefox.json manifest.json",
"dev:opera": "cp manifest.opera.json manifest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varshneydevansh/FilterTube.git"
},
"keywords": [
"youtube",
"youtubekids",
"filter",
"extension",
"browser"
],
"author": "Devansh Varshney",
"license": "MIT",
"bugs": {
"url": "https://github.com/varshneydevansh/FilterTube/issues"
},
"homepage": "https://github.com/varshneydevansh/FilterTube",
"devDependencies": {
"archiver": "^5.3.1",
"esbuild": "^0.27.4",
"fs-extra": "^11.1.1"
},
"dependencies": {
"preact": "^10.29.0",
"qrcode": "^1.5.4"
}
}