UNPKG

@supernovaio/cli

Version:

Supernova.io Command Line Interface

150 lines (149 loc) 4.52 kB
{ "name": "@supernovaio/cli", "description": "Supernova.io Command Line Interface", "version": "2.0.22", "author": "Supernova.io", "bin": { "supernova": "./bin/run" }, "bugs": "https://github.com/Supernova-Studio/cli/issues", "dependencies": { "@hackolade/keytar": "^33.1.0-7.9.0", "@oclif/core": "^4", "@oclif/plugin-help": "^6", "@oclif/plugin-plugins": "^5", "@sentry/nestjs": "^9.9.0", "@sentry/node": "^9.9.0", "@sentry/profiling-node": "^9.9.0", "@sindresorhus/slugify": "^2.2.1", "@supernova-studio/client": "1.52.1", "@supernova-studio/pulsar-core": "2.6.13", "@supernova-studio/pulsar-language": "^2.6.12", "@supernovaio/code-analyzer": "^1.0.1-alpha.2", "@supernovaio/sdk": "2.0.36", "@types/fs-extra": "^11.0.4", "adm-zip": "^0.5.16", "axios": "^1.8.4", "cli-progress": "^3.12.0", "colors": "^1.4.0", "dotenv": "^16.4.7", "fs-extra": "^11.3.2", "inquirer": "^12.5.2", "ip-cidr": "^4.0.2", "jwt-decode": "^4.0.0", "keytar": "^7.9.0", "minimatch": "^10.0.1", "node-fetch": "^3.3.2", "open": "^10.1.0", "pkce-challenge": "^4.1.0", "terminal-link": "^4.0.0", "ts-pattern": "^5.6.2", "zod": "^3.24.2" }, "devDependencies": { "@babel/core": "^7.9.0", "@babel/preset-env": "^7.3.4", "@babel/preset-react": "7.18.6", "@babel/register": "^7.18.9", "@eslint/compat": "^1", "@oclif/prettier-config": "^0.2.1", "@oclif/test": "^4", "@sentry/cli": "^2.42.1", "@supernovaio/export-helpers": "^1.0.30", "@supernovaio/sdk-exporters": "^2.0.36", "@types/adm-zip": "^0.5.7", "@types/cli-progress": "^3.11.6", "@types/inquirer": "^9.0.7", "@types/node": "^22", "eslint": "^9", "eslint-config-oclif": "^6", "eslint-config-prettier": "^10", "globby": "^11", "oclif": "^4", "prettier": "^3.5.1", "shx": "^0.3.3", "ts-node": "^10", "tslib": "^2.8.1", "typescript": "^5", "vitest": "^3.0.6" }, "bundleDependencies": [ "@supernova-studio/simple-parse-github-url", "@supernova-studio/model" ], "engines": { "node": ">=20.0.0" }, "files": [ "/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "homepage": "https://supernova.io/", "keywords": [ "Supernova", "Design Systems", "Supernovaio", "SDK", "Design Tokens", "Tokens", "Assets", "Components", "Documentation", "CMS" ], "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "oclif": { "bin": "supernova", "dirname": "supernova", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ], "topicSeparator": " ", "topics": { "sync-tokens": { "description": "Synchronize tokens from Figma Tokens plugin to Supernova workspaces" }, "describe-design-system": { "description": "Describe structure (brands and themes) of selected design system" }, "describe-workspaces": { "description": "Describe structure of all workspaces provided API key has access to" }, "publish-documentation": { "description": "Publish current documentation" } }, "hooks": { "postrun": [ "./dist/hooks/postrun/save-config" ], "prerun": [ "./dist/hooks/prerun/sentry", "./dist/hooks/prerun/load-config" ] } }, "repository": "https://github.com/Supernova-Studio/cli", "scripts": { "build": "npx shx rm -rf dist && tsc -b && cp -R ./src/docker-scripts ./dist", "check-types": "tsc --noEmit", "lint": "eslint", "lint:ci": "eslint . --quiet", "lint:fix": "eslint . --fix", "postpack": "shx rm -f oclif.manifest.json", "prepack": "oclif manifest && oclif readme", "test": "NODE_OPTIONS='--loader=ts-node/esm --no-warnings' vitest --config vitest.config.ts", "test:ci": "NODE_OPTIONS='--loader=ts-node/esm --no-warnings' vitest run --config vitest.config.ts", "typecheck": "tsc --noEmit", "version": "oclif readme && git add README.md", "publish-package": "npm run build && npm run sentry:sourcemaps && npm run prepack && npm publish --access public && npm run postpack", "sentry:sourcemaps": "sentry-cli sourcemaps inject --org supernova-studio --project cli ./dist && sentry-cli sourcemaps upload --org supernova-studio --project cli ./dist" } }