-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 3 KB
/
package.json
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
{
"private": true,
"scripts": {
"postinstall": "npm run copy-sjcl",
"copy-sjcl": "node scripts/generateSJCL.js",
"bundle-config": "node scripts/bundleConfig.mjs",
"build": "npm run build-types && npm run build-locales && npm run bundle-trackers && npm run build-firefox && npm run build-chrome && npm run build-apple && npm run build-android && npm run build-windows && npm run build-integration && npm run build-chrome-mv3",
"build-locales": "node scripts/buildLocales.js",
"build-firefox": "node scripts/entry-points.js --platform firefox",
"build-chrome": "node scripts/entry-points.js --platform chrome",
"build-chrome-mv3": "node scripts/entry-points.js --platform chrome-mv3",
"build-apple": "node scripts/entry-points.js --platform apple && node scripts/entry-points.js --platform apple-isolated",
"build-android": "node scripts/entry-points.js --platform android && node scripts/entry-points.js --platform android-autofill-password-import",
"build-windows": "node scripts/entry-points.js --platform windows",
"build-integration": "node scripts/entry-points.js --platform integration",
"build-types": "node scripts/types.mjs",
"bundle-trackers": "node scripts/bundleTrackers.mjs --output ../build/tracker-lookup.json",
"test-unit": "jasmine --config=unit-test/config.json",
"test-int": "npm run build-integration && npm run playwright",
"test-int-x": "xvfb-run --server-args='-screen 0 1024x768x24' npm run test-int",
"test": "npm run lint && npm run test-unit && npm run test-int && npm run playwright",
"serve": "http-server -c-1 --port 3220 integration-test/test-pages",
"playwright": "playwright test --grep-invert '@screenshots'",
"playwright-screenshots": "playwright test --grep '@screenshots'",
"playwright-headed": "playwright test --headed",
"preplaywright": "npm run build-windows && npm run build-apple && npm run build-android",
"preplaywright-headed": "npm run build-windows && npm run build-apple && npm run build-android",
"playwright-e2e": "playwright test -c playwright-e2e.config.js --project duckplayer-e2e",
"playwright-e2e-headed": "npm run playwright-e2e -- --headed",
"preplaywright-e2e": "npm run build-windows && npm run build-apple"
},
"type": "module",
"dependencies": {
"parse-address": "^1.1.2",
"seedrandom": "^3.0.5",
"sjcl": "^1.0.8"
},
"devDependencies": {
"@canvas/image-data": "^1.0.0",
"@duckduckgo/privacy-configuration": "github:duckduckgo/privacy-configuration#main",
"@fingerprintjs/fingerprintjs": "^4.5.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/chrome": "^0.0.283",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"fast-check": "^3.23.1",
"jasmine": "^5.4.0",
"minimist": "^1.2.8",
"rollup": "^4.24.4",
"rollup-plugin-import-css": "^3.5.6",
"rollup-plugin-svg-import": "^3.0.0"
}
}