UNPKG

@sugarcube-org/cli

Version:

A CLI for scaffolding sugarcube applications

66 lines 1.51 kB
{ "name": "@sugarcube-org/cli", "version": "0.0.0-alpha.16", "publishConfig": { "access": "public" }, "description": "A CLI for scaffolding sugarcube applications", "license": "UNLICENSED", "author": "Mark Tomlinson", "repository": { "type": "git", "url": "https://github.com/sugarcube-org/sugarcube" }, "bugs": { "url": "https://github.com/sugarcube-org/sugarcube/issues" }, "keywords": [ "cli", "design-system", "components", "CUBE CSS", "react", "sugarcube" ], "files": [ "dist", "README.md", "LICENSE.md" ], "type": "module", "main": "./dist/index.mjs", "exports": { ".": "./dist/index.mjs" }, "bin": { "sugarcube": "./dist/index.mjs" }, "dependencies": { "@antfu/ni": "^23.3.0", "@clack/prompts": "^0.9.1", "commander": "^12.1.0", "cross-env": "^7.0.3", "execa": "^9.5.2", "fast-glob": "^3.3.2", "node-fetch": "^3.3.0", "pathe": "^2.0.3", "picocolors": "^1.1.1", "zod": "^3.24.2", "@sugarcube-org/core": "0.0.1-alpha.6" }, "devDependencies": { "pkgroll": "^2.5.1", "tsx": "^4.19.2" }, "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc --noEmit && pkgroll --minify", "dev": "cross-env REGISTRY_URL=http://localhost:4321/r tsx src/index.ts", "test": "vitest run", "test:watch": "vitest", "type-check": "tsc --noEmit", "start": "cross-env REGISTRY_URL=https://sugarcube.sh/r tsx src/index.ts" } }