-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.28 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.28 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
{
"name": "socket-addon",
"version": "0.0.0",
"private": true,
"description": "NAPI .node binaries for @socketaddon/* packages. Downloads prebuilt artifacts from socket-btm GH Releases, verifies checksums, publishes to npm.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.1.3",
"engines": {
"node": ">=18.20.8",
"pnpm": ">=11.1.3"
},
"scripts": {
"build": "echo 'no build — publish-only repo'",
"check": "node scripts/check.mts",
"check:paths": "node scripts/check-paths.mts",
"clean": "node scripts/clean.mts",
"cover": "COVERAGE=true pnpm exec vitest run --coverage --config .config/vitest.config.mts",
"fix": "node scripts/fix.mts",
"format": "oxfmt -c .config/oxfmtrc.json --write .",
"format:check": "oxfmt -c .config/oxfmtrc.json --check .",
"lint": "node scripts/lint.mts",
"prepare": "node scripts/install-git-hooks.mts",
"publish": "node scripts/publish.mts",
"publish:ci": "node scripts/publish.mts --tag ${DIST_TAG:-latest}",
"publish:dry": "node scripts/publish.mts --dry-run",
"security": "node scripts/security.mts",
"setup": "node .claude/hooks/setup-security-tools/index.mts",
"test": "node scripts/test.mts",
"type": "tsgo --noEmit -p tsconfig.check.json",
"update": "node scripts/update.mts",
"lockstep": "node scripts/lockstep.mts",
"lockstep:emit-schema": "node scripts/lockstep-emit-schema.mts",
"setup-security-tools": "node .claude/hooks/setup-security-tools/install.mts"
},
"devDependencies": {
"@sinclair/typebox": "catalog:",
"@socketregistry/packageurl-js": "catalog:",
"@socketregistry/packageurl-js-stable": "catalog:",
"@socketsecurity/lib": "catalog:",
"@socketsecurity/lib-stable": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"build-infra": "workspace:*",
"ecc-agentshield": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-addon.git"
},
"homepage": "https://github.com/SocketDev/socket-addon"
}