@sugarcube-org/cli
Version:
A CLI for scaffolding sugarcube applications
76 lines • 1.85 kB
JSON
{
"name": "@sugarcube-org/cli",
"version": "0.0.0-alpha.37",
"publishConfig": {
"access": "public",
"provenance": false
},
"description": "A CLI for scaffolding sugarcube applications",
"license": "MIT",
"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": {
".": {
"types": "./dist/exports.d.mts",
"import": "./dist/exports.mjs"
}
},
"bin": {
"make-sugarcube": "./dist/index.mjs"
},
"dependencies": {
"@antfu/ni": "23.3.0",
"@clack/core": "1.0.0-alpha.3",
"@clack/prompts": "1.0.0-alpha.3",
"@sugarcube-org/core": "0.1.0-alpha.21",
"@unocss/core": "66.5.2",
"commander": "12.1.0",
"execa": "9.5.2",
"fast-wrap-ansi": "0.1.3",
"get-tsconfig": "4.7.2",
"is-unicode-supported": "2.1.0",
"log-update": "6.1.0",
"pathe": "2.0.3",
"picocolors": "1.1.1",
"tinyglobby": "^0.2.9",
"zod": "^3.23.8"
},
"devDependencies": {
"cross-env": "7.0.3",
"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 --exclude 'tests/e2e/**'",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest --exclude 'tests/e2e/**'",
"type-check": "tsc --noEmit",
"start": "cross-env REGISTRY_URL=https://sugarcube.sh/r tsx src/index.ts"
}
}