-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 6.76 KB
/
Copy pathpackage.json
File metadata and controls
149 lines (149 loc) · 6.76 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "abitious",
"private": true,
"description": "Workspace root for the abitious npm distribution (@abitious/cli + per-triple platform packages). The crates are the Cargo workspace; this drives codegen, typecheck, and the JS tests.",
"license": "MIT",
"scripts": {
"build": "cargo build --workspace",
"coverage": "node scripts/repo/coverage.mts",
"gen": "node scripts/repo/gen-packages.mts",
"gen:check": "node scripts/repo/gen-packages.mts --check",
"test": "node scripts/fleet/test.mts",
"release": "node scripts/repo/release.mts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"check": "node scripts/fleet/check.mts",
"check:paths": "node scripts/fleet/check/paths-are-canonical.mts",
"ci:local": "node scripts/fleet/local-ci-skip-locks.mts run --all --quiet --pause-on-failure --github-token",
"clean": "node scripts/fleet/clean.mts",
"cover": "node scripts/fleet/cover.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",
"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",
"lint": "node scripts/fleet/lint.mts",
"prepare": "node scripts/repo/bootstrap/prepare.mts && node scripts/fleet/install-git-hooks.mts && node scripts/fleet/prepare.mts",
"security": "node scripts/fleet/security.mts",
"setup-security-tools": "node .claude/hooks/fleet/setup-security-tools/install.mts",
"sync-oxlint-rules": "node scripts/fleet/sync-oxlint-rules.mts",
"sync-package-manager-pins": "node scripts/fleet/sync-package-manager-pins.mts",
"update": "node scripts/fleet/update.mts",
"weekly-update": "node scripts/fleet/weekly-update.mts",
"doctor": "node scripts/fleet/doctor.mts",
"setup:brew": "node scripts/fleet/setup/brew.mts",
"setup:go": "node scripts/fleet/setup/go.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",
"type": "node node_modules/typescript/bin/tsc --noEmit -p .config/fleet/tsconfig.check.json",
"npm:publish": "node scripts/fleet/publish-pipeline.mts",
"prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1",
"socket-wheelhouse:emit-schema": "node scripts/fleet/socket-wheelhouse-emit-schema.mts",
"mcp:reset": "node scripts/fleet/mcp/reset.mts",
"setup:sfw-ca": "node scripts/fleet/setup/sfw-ca.mts",
"get-green": "node scripts/fleet/get-green.mts",
"weekly-update:ci": "gh workflow run weekly-update.yml",
"prune:backups": "node scripts/fleet/backup-branches.mts prune",
"strip:ai-tags": "node scripts/fleet/strip-ai-tags.mts",
"npm:approve": "node scripts/fleet/publish-pipeline.mts --approve",
"npm:auth": "node scripts/fleet/npm-auth.mts",
"npm:dispatch": "gh workflow run npm-publish-packages.yml -R SocketDev/socket-registry --ref main -f publish=true",
"npm:staged": "node scripts/fleet/publish-pipeline.mts --status",
"hide-comments": "node scripts/fleet/hide-comments.mts",
"ruleset:bypass": "node scripts/fleet/grant-ruleset-bypass.mts",
"soak:bypass": "node scripts/fleet/soak-bypass.mts",
"npm:trust": "node scripts/fleet/registry-infra/npm/trust.mts",
"prune:branch-backups": "node scripts/fleet/backup-branches.mts prune",
"preflight": "node scripts/fleet/preflight.mts",
"npm:auth:browser": "node scripts/fleet/npm-auth-browser.mts",
"npm:auth:cli": "node scripts/fleet/npm-auth-cli.mts",
"prune:gha-caches": "node scripts/fleet/prune-actions-caches.mts",
"gh:auth": "node scripts/fleet/gh-auth.mts",
"fix:rust": "node scripts/fleet/fix-rust.mts",
"fmt:rust": "node scripts/fleet/fmt-rust.mts",
"lint:rust": "node scripts/fleet/lint-rust.mts",
"check:fleet": "node scripts/fleet/check.mts",
"fix:js": "node scripts/fleet/fix.mts --js",
"fix:repo": "node scripts/fleet/fix.mts --repo",
"fmt:js": "node scripts/fleet/format.mts",
"lint:js": "node scripts/fleet/lint.mts",
"sync-global-hooks": "node scripts/fleet/sync-global-hooks.mts",
"backup": "node scripts/fleet/backup-work.mts",
"offload:model": "node scripts/fleet/offload-model.mts",
"setup:fireconnect": "node scripts/fleet/setup/fireconnect.mts",
"setup:offload-providers": "node scripts/fleet/setup/offload-providers.mts",
"build:hook-bundle": "node scripts/fleet/build-hook-bundle.mts",
"build:hook-snapshot": "node scripts/fleet/build-hook-snapshot.mts",
"build:snapshot-launcher": "node scripts/fleet/build-snapshot-launcher.mts",
"gen:glyph": "node scripts/fleet/gen/glyph.mts"
},
"devDependencies": {
"@mdn/browser-compat-data": "catalog:",
"@playwright/mcp": "catalog:",
"@shadscan/cli": "catalog:",
"@sinclair/typebox": "catalog:",
"@socketregistry/packageurl-js": "catalog:",
"@socketregistry/packageurl-js-stable": "catalog:",
"@socketsecurity/lib": "catalog:",
"@socketsecurity/lib-stable": "catalog:",
"@socketsecurity/sdk": "catalog:",
"@socketsecurity/sdk-stable": "catalog:",
"@types/mdast": "catalog:",
"@types/node": "catalog:",
"@types/semver": "catalog:",
"@types/shell-quote": "catalog:",
"@ultrathink/acorn.rs.wasm": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"c8": "catalog:",
"chrome-devtools-mcp": "catalog:",
"fast-check": "catalog:",
"magic-string": "catalog:",
"markdownlint-cli2": "catalog:",
"mdast-util-from-markdown": "catalog:",
"mdast-util-gfm": "catalog:",
"mdast-util-to-markdown": "catalog:",
"micromark": "catalog:",
"micromark-extension-gfm": "catalog:",
"neosanitize": "catalog:",
"nock": "catalog:",
"npm-high-impact": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"parse5": "catalog:",
"playwright-core": "catalog:",
"portless": "catalog:",
"regjsparser": "catalog:",
"rolldown": "catalog:",
"run-local-ci": "catalog:",
"semver": "catalog:",
"shell-quote": "catalog:",
"svgo": "catalog:",
"taze": "catalog:",
"typebox": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"yaml": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=11.25.0",
"onFail": "error"
}
},
"engines": {
"node": ">=24",
"npm": "^11.19.0 || >=12.0.2",
"pnpm": "^11.25.0 || >=12.3.4"
},
"allowScripts": {
"cpu-features": false,
"protobufjs": false,
"puppeteer": false,
"ssh2": false
}
}