This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 2.93 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
{
"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",
"clean": "tsc -b --clean",
"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",
"publish:all": "yarn workspaces foreach --topological-dev npm publish --access public"
},
"repository": "git@github.com:ulixee/unblocked.git",
"author": "Ulixee",
"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",
"@lerna-lite/version": "^3.9.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.10",
"@ulixee/repo-tools": "^1.0.33",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.2.4",
"shx": "^0.3.3",
"typescript": "~5.6.2"
},
"workspaces": [
"agent/*",
"specification",
"js-path",
"real-user-agents",
"plugins/*",
"double-agent/*",
"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"
}