-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 4.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@socketregistry/monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for Socket.dev optimized package overrides",
"homepage": "http://github.com/SocketDev/socket-registry",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-registry.git"
},
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"scripts": {
"check": "run-p --continue-on-error --aggregate-output check:*",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"clean-node_modules": "del-cli 'test/**/node_modules' 'node_modules'",
"knip:dependencies": "knip --dependencies",
"knip:exports": "knip --include exports,duplicates",
"lint": "oxlint -c=./.oxlintrc.json --ignore-path=./.prettierignore --tsconfig=./tsconfig.json .",
"lint:fix": "npm run lint -- --fix && npm run lint:fix:fast",
"lint:fix:fast": "prettier --cache --log-level warn --write .",
"perf": "node ./scripts/perf.js",
"prepare": "husky && custompatch && npm run setup",
"test": "run-s check test:*",
"pretest:unit": "run-s update:longtask:test:**",
"test:unit": "node ./scripts/test.js",
"test-pre-commit": "cross-env-shell PRE_COMMIT=1 npm test",
"test-ci": "run-s test:*",
"make:npm-override": "node ./scripts/make-npm-override.js",
"release:npm": "node ./scripts/release-npm-packages.js",
"setup": "run-p --aggregate-output update:package-lock update:tap-config",
"update": "run-p --aggregate-output update:* update:npm:* && run-s update:longtask:**",
"update:empty-dirs": "node ./scripts/update-empty-dirs.js",
"update:empty-files": "node ./scripts/update-empty-files.js",
"update:licenses": "node ./scripts/update-licenses.js",
"update:manifest": "node ./scripts/update-manifest.js",
"update:package-json": "node ./scripts/update-package-json.js",
"update:package-lock": "node ./scripts/update-package-lock.js",
"update:tap-config": "node ./scripts/update-tap-config.js",
"update:npm:package-access": "node ./scripts/update-npm-package-access.js",
"update:npm:package-json": "node ./scripts/update-npm-package-json.js",
"update:npm:package-publish": "node ./scripts/update-npm-package-publish.js",
"update:npm:readmes": "node ./scripts/update-npm-readmes.js",
"update:longtask:test:npm:package-json": "node ./scripts/update-test-npm-package-json.js"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@mdn/browser-compat-data": "^5.6.26",
"@npmcli/package-json": "^6.1.0",
"@npmcli/promise-spawn": "^8.0.2",
"@socketregistry/packageurl-js": "^1.0.1",
"@socketregistry/scripts": "file:./scripts",
"@socketregistry/yocto-spinner": "^1.0.2",
"@socketsecurity/registry": "file:./registry",
"@tapjs/run": "^4.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"@types/npmcli__package-json": "^4.0.4",
"@types/npmcli__promise-spawn": "^6.0.3",
"@types/semver": "^7.5.8",
"@types/validate-npm-package-name": "^4.0.2",
"@types/which": "^3.0.4",
"@yarnpkg/extensions": "2.0.4",
"@zkochan/js-yaml": "^0.0.7",
"cross-env": "^7.0.3",
"custompatch": "^1.0.28",
"del-cli": "^6.0.0",
"didyoumean2": "^7.0.4",
"eslint": "^9.17.0",
"eslint-import-resolver-oxc": "^0.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"eta": "^3.5.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"knip": "^5.41.1",
"npm-package-arg": "^12.0.1",
"npm-run-all2": "^7.0.2",
"out-url": "^1.2.2",
"oxlint": "0.15.3",
"packageurl-js": "^2.0.1",
"prettier": "3.4.2",
"read-yaml-file": "^2.1.0",
"semver": "^7.6.3",
"signal-exit": "^4.1.0",
"ssri": "^12.0.0",
"tinyglobby": "^0.2.10",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.2",
"update-browserslist-db": "^1.1.1",
"which": "^5.0.0"
},
"workspaces": [
"packages/npm/*",
"perf/*",
"registry"
],
"engines": {
"node": "^20.18.0 || >=22.12.0"
}
}