stack/packages/init-stack/package.json
CactusBlue 24533c2473
--neon flag for @stackframe/init-stack (#400)
* add setup tests

* continue, even on error

* colorize everything

* simplify success logging

* wat

* install neon as dependency

* combine neon installation

* clean ansi color application

* remove unrelated file

* use stack-shared string utils

---------

Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
2025-01-27 17:07:27 -08:00

30 lines
1.1 KiB
JSON

{
"name": "@stackframe/init-stack",
"version": "2.7.8",
"description": "The setup wizard for Stack. https://stack-auth.com",
"main": "index.mjs",
"bin": "./index.mjs",
"scripts": {
"clean": "rimraf test-run-output && rimraf node_modules",
"init-stack": "node index.mjs",
"init-stack:local": "STACK_PACKAGE_NAME_OVERRIDE=../../stack node index.mjs",
"test-run": "rimraf test-run-output && npx -y create-next-app@latest test-run-output && pnpm run init-stack:local test-run-output",
"test-run-auto": "rimraf test-run-output && npx -y create-next-app@latest test-run-output --app --ts --no-src-dir --tailwind --use-npm --eslint --import-alias '##@#/*' --turbopack && STACK_DISABLE_INTERACTIVE=true pnpm run init-stack:local test-run-output"
},
"files": [
"README.md",
"index.mjs",
"CHANGELOG.md",
"LICENSE"
],
"homepage": "https://stack-auth.com",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@stackframe/stack-shared": "workspace:*",
"inquirer": "^9.2.19",
"open": "^10.1.0"
}
}