-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 4 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
{
"name": "socket-bin",
"version": "0.0.0",
"private": true,
"description": "SEA-packed binaries for @socketbin/* packages. Downloads prebuilt artifacts from socket-btm GH Releases, verifies checksums, publishes to npm.",
"homepage": "https://github.com/SocketDev/socket-bin",
"license": "MIT",
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-bin.git"
},
"type": "module",
"scripts": {
"build": "echo 'no build — publish-only repo'",
"check": "node scripts/fleet/check.mts",
"check:paths": "node scripts/fleet/check/paths-are-canonical.mts",
"clean": "node -e \"require('node:fs').rmSync('node_modules/.cache', { recursive: true, force: true })\"",
"cover": "node scripts/fleet/cover.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",
"prepare": "node scripts/fleet/install-git-hooks.mts",
"publish": "node scripts/fleet/npm-publish.mts",
"publish:ci": "node scripts/fleet/npm-publish.mts --tag ${DIST_TAG:-latest}",
"publish:cross-org": "node scripts/publish-cross-org.mts",
"publish:dry": "node scripts/fleet/npm-publish.mts --dry-run",
"security": "node scripts/fleet/security.mts",
"setup": "node .claude/hooks/fleet/setup-security-tools/index.mts",
"test": "node scripts/fleet/test.mts",
"type": "tsgo --noEmit -p tsconfig.check.json",
"update": "node scripts/fleet/update.mts",
"lockstep": "node scripts/fleet/lockstep.mts",
"lockstep:emit-schema": "node scripts/fleet/lockstep-emit-schema.mts",
"setup-security-tools": "node .claude/hooks/fleet/setup-security-tools/install.mts",
"ci:local": "node scripts/fleet/agent-ci-skip-locks.mts run --all --quiet --pause-on-failure --github-token",
"weekly-update": "node scripts/fleet/weekly-update.mts",
"weekly-update:ci": "node scripts/fleet/weekly-update-workflow.mts run",
"doctor:auth": "node scripts/fleet/check/setup-is-prompt-less.mts",
"sync-oxlint-rules": "node scripts/fleet/sync-oxlint-rules.mts",
"sync-package-manager-pins": "node scripts/fleet/sync-package-manager-pins.mts",
"doctor": "node scripts/fleet/doctor.mts",
"gen:llms-txt": "node scripts/fleet/make-llms-txt.mts --no-ai"
},
"devDependencies": {
"@redwoodjs/agent-ci": "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:",
"@typescript/native-preview": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"build-infra": "workspace:*",
"ecc-agentshield": "catalog:",
"magic-string": "catalog:",
"markdownlint-cli2": "catalog:",
"mdast-util-from-markdown": "catalog:",
"micromark": "catalog:",
"neosanitize": "catalog:",
"nock": "catalog:",
"npm-run-all2": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"playwright-core": "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": ">=18.20.8",
"npm": ">=12.0.0",
"pnpm": ">=11.0.5"
},
"allowScripts": {
"cpu-features": false,
"esbuild": true,
"protobufjs": false,
"ssh2": false
},
"npm-run-all2": {
"nodeRun": true
}
}