Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@starkscan/cli

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@starkscan/cli - npm Package Compare versions

Comparing version
0.0.0
to
0.0.1
+21
LICENSE
MIT License
Copyright (c) 2026 Starkscan contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+4
-3
#!/usr/bin/env node
console.error("The stable @starkscan/cli channel is not released yet.");
console.error("Use the beta explicitly: npx -y @starkscan/cli@alpha");
console.error(
"@starkscan/cli stable channel is not released yet. Use npx -y @starkscan/cli@alpha or pin an exact 0.1.0-alpha.x version.",
);
process.exit(1);
{
"name": "@starkscan/cli",
"version": "0.0.0",
"private": false,
"version": "0.0.1",
"description": "Stable placeholder for the Starkscan CLI. Use @starkscan/cli@alpha for the current beta.",
"license": "MIT",
"type": "module",
"bin": {
"starkscan": "./bin/starkscan.js"
"publishConfig": {
"access": "public"
},
"homepage": "https://starkscan.co/docs/ai/agent-cli",
"bugs": {
"url": "https://starkscan.co/docs/build/package-trust"
},
"repository": {
"type": "git",
"url": "https://github.com/starknet-innovation/mezcal",
"directory": "webapp/packages/stable-placeholders/cli"
},
"keywords": [
"starkscan",
"starknet",
"block-explorer",
"cairo",
"web3",
"cli",
"agent",
"npx"
],
"files": [
"bin",
"README.md",
"bin"
"LICENSE"
],
"publishConfig": {
"access": "public"
"bin": {
"starkscan": "./bin/starkscan.js"
},
"engines": {
"node": ">=18"
}
}
# @starkscan/cli
The stable Starkscan CLI channel is not released yet.
Stable channel placeholder for the Starkscan CLI.
Use the beta explicitly:
The production `latest` channel is not released yet. This package exists so
`npm install -g @starkscan/cli` and `npx @starkscan/cli` fail closed instead of
running a moving alpha.
## Current beta
Run the alpha channel explicitly:
```bash
npx -y @starkscan/cli@alpha
npx -y @starkscan/cli@alpha doctor
npx -y @starkscan/cli@alpha status
```
For unattended agents or production services, pin an exact smoked version:
```bash
npx -y @starkscan/cli@0.1.0-alpha.2 doctor
```
## Environment
```bash
export STARKSCAN_BASE_URL="https://starkscan.co/api"
export STARKSCAN_API_KEY="<store this in your shell or agent secret store>"
export STARKSCAN_CHAIN="SN_MAIN"
```
## Trust links
- Package trust: <https://starkscan.co/docs/build/package-trust>
- CLI docs: <https://starkscan.co/docs/ai/agent-cli>
- npm alpha: <https://www.npmjs.com/package/@starkscan/cli?activeTab=versions>