-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.36 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.36 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
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
111
112
113
{
"name": "node-smol",
"version": "0.0.0",
"private": true,
"description": "Socket's customized Node.js distribution — source patches, builtins, SEA packaging, platform artifacts, release assembly",
"homepage": "https://github.com/SocketDev/node-smol",
"license": "MIT",
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/node-smol.git"
},
"scripts": {
"build": "node scripts/fleet/build-hook-bundle.mts",
"check": "node scripts/fleet/check.mts",
"check:paths": "node scripts/fleet/check/paths-are-canonical.mts",
"ci:local": "node scripts/fleet/agent-ci-skip-locks.mts run --all --quiet --pause-on-failure --github-token",
"cover": "node scripts/fleet/cover.mts",
"doctor": "node scripts/fleet/doctor.mts",
"doctor:auth": "node scripts/fleet/check/setup-is-prompt-less.mts",
"fix": "node scripts/fleet/fix.mts",
"format": "node scripts/fleet/format.mts",
"format:check": "node scripts/fleet/format.mts --check",
"lint": "node scripts/fleet/lint.mts",
"lockstep": "node scripts/fleet/lockstep.mts",
"lockstep:emit-mirror-globs": "node scripts/fleet/lockstep-emit-mirror-globs.mts",
"lockstep:emit-schema": "node scripts/fleet/lockstep-emit-schema.mts",
"prepare": "node scripts/fleet/install-git-hooks.mts && node scripts/fleet/prepare.mts",
"security": "node scripts/fleet/security.mts",
"sync-package-manager-pins": "node scripts/fleet/sync-package-manager-pins.mts",
"test": "node scripts/fleet/test.mts",
"update": "node scripts/fleet/update.mts",
"weekly-update": "node scripts/fleet/weekly-update.mts",
"clean": "node -e \"require('node:fs').rmSync('node_modules/.cache', { recursive: true, force: true })\"",
"setup-security-tools": "node .claude/hooks/fleet/setup-security-tools/install.mts",
"sync-oxlint-rules": "node scripts/fleet/sync-oxlint-rules.mts",
"type": "node node_modules/typescript/bin/tsc --noEmit -p .config/fleet/tsconfig.check.json",
"weekly-update:ci": "node scripts/fleet/weekly-update-workflow.mts run",
"gen:llms-txt": "node scripts/fleet/gen/llms-txt.mts --no-ai",
"setup:brew": "node scripts/fleet/setup/brew.mts",
"setup:go": "node scripts/fleet/setup/go.mts",
"setup:mcp": "node scripts/fleet/setup/mcp.mts",
"setup:python": "node scripts/fleet/setup/python.mts",
"setup:refero": "node scripts/fleet/setup/refero.mts",
"setup:rust": "node scripts/fleet/setup/rust.mts",
"socket-wheelhouse:emit-schema": "node scripts/fleet/socket-wheelhouse-emit-schema.mts"
},
"devDependencies": {
"@redwoodjs/agent-ci": "catalog:",
"@shadscan/cli": "catalog:",
"@sinclair/typebox": "catalog:",
"@socketregistry/packageurl-js": "catalog:",
"@socketregistry/packageurl-js-stable": "catalog:",
"@socketsecurity/lib": "catalog:",
"@socketsecurity/lib-stable": "catalog:",
"@socketsecurity/registry": "catalog:",
"@socketsecurity/registry-stable": "catalog:",
"@socketsecurity/sdk": "catalog:",
"@socketsecurity/sdk-stable": "catalog:",
"@types/mdast": "catalog:",
"@types/node": "catalog:",
"@types/semver": "catalog:",
"@types/shell-quote": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"c8": "catalog:",
"chrome-devtools-mcp": "catalog:",
"compromise": "catalog:",
"dtu-github-actions": "catalog:",
"fast-check": "catalog:",
"magic-string": "catalog:",
"markdownlint-cli2": "catalog:",
"mdast-util-from-markdown": "catalog:",
"micromark": "catalog:",
"neosanitize": "catalog:",
"nock": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"playwright-core": "catalog:",
"portless": "catalog:",
"regjsparser": "catalog:",
"rolldown": "catalog:",
"semver": "catalog:",
"shell-quote": "catalog:",
"svgo": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=11.0.0 <12.0.0",
"onFail": "error"
}
},
"engines": {
"node": ">=24",
"npm": ">=12.0.0",
"pnpm": ">=11.0.5"
},
"allowScripts": {
"cpu-features": false,
"protobufjs": false,
"puppeteer": false,
"ssh2": false
}
}