forked from ulixee/unblocked
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@ulixee/unblocked",
"private": true,
"description": "The Unblocking Bot-Blocker monorepo",
"scripts": {
"prepare": "husky",
"bump-version": "ulx-repo-version-bump",
"build": "yarn --frozen-lockfile && yarn tsc && cd ./build && cross-env ULX_MITM_REBUILD_SOCKET=1 yarn && pwd && yarn workspace @double-agent/config sync",
"build:simple": "yarn --frozen-lockfile && yarn tsc && cd ./build && yarn && pwd && yarn workspace @double-agent/config sync",
"build:dist": "shx rm -rf build-dist && tsc -b tsconfig.dist.json && yarn copy:dist",
"copy:build": "ulx-repo-after-build && ulx-repo-adjust-paths && node alsoCopy.js",
"copy:dist": "ulx-repo-after-build --dist && shx cp -r \"browser-emulator-builder/data\" \"build-dist/plugins/default-browser-emulator\" && ulx-repo-adjust-paths build-dist",
"da:start": "cd build && yarn workspace @double-agent/collect-controller start",
"tsc": "tsc -b -i tsconfig.json && yarn copy:build",
"watch": "yarn tsc && tsc -b -w tsconfig.json",
"test": "yarn copy:build && yarn test:build",
"test:build": "cd ./build && cross-env ULX_DATA_DIR=.data-test NODE_ENV=test jest",
"test:debug": "yarn build && cd ./build && cross-env ULX_DATA_DIR=.data-test NODE_ENV=test node --inspect node_modules/.bin/jest --runInBand",
"test:debug:fast": "yarn tsc && cd ./build && cross-env ULX_DATA_DIR=.data-test NODE_ENV=test node --inspect node_modules/.bin/jest --runInBand",
"lint": "eslint --cache ./",
"version:check": "ulx-repo-version-check fix",
"version:bump": "ulx-repo-version-bump"
},
"repository": "git@github.com:ulixee/unblocked.git",
"author": "Ulixee",
"contributors": [
"Caleb Clark",
"Blake Byrnes"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ulixee/unblocked/issues"
},
"homepage": "https://ulixee.org/unblocked",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@ulixee/repo-tools": "^1.0.31",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lerna": "^4.0.0",
"lint-staged": "^13.2.2",
"prettier": "^3.2.4",
"shx": "^0.3.3",
"typescript": "~5.3.3"
},
"workspaces": [
"agent/*",
"specification",
"js-path",
"real-user-agents",
"plugins/*",
"double-agent/collect",
"double-agent/collect-controller",
"double-agent/config",
"double-agent/analyze",
"double-agent/docs",
"double-agent/tls-server",
"double-agent/runner",
"double-agent/collect/plugins/*",
"double-agent/analyze/plugins/*",
"double-agent-stacks",
"browser-profiler/*",
"browser-emulator-builder",
"../shared/build/*"
],
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.21+sha256.dbed5b7e10c552ba0e1a545c948d5473bc6c5a28ce22a8fd27e493e3e5eb6370"
}