UNPKG

create-dynamic-app

Version:

CLI tool to generate sample applications using Dynamic's web3 authentication

88 lines (87 loc) 2.24 kB
{ "name": "create-dynamic-app", "version": "2.3.1", "repository": { "type": "git", "url": "https://github.com/dynamic-labs/create-dynamic-app" }, "scripts": { "generate:all": "bun run generate:react && bun run generate:next", "lint": "eslint .", "lint:fix": "eslint --fix .", "format": "prettier --write .", "check": "npm run lint && npm run format -- --check", "build": "bun build ./create-dynamic-app.ts --outdir ./dist --target node", "start": "bun run dist/create-dynamic-app.js", "prepublishOnly": "bun run build", "test": "bun test --bail" }, "bin": { "create-dynamic-app": "./dist/create-dynamic-app.js" }, "type": "module", "author": "Dynamic Labs", "license": "ISC", "description": "CLI tool to generate sample applications using Dynamic's web3 authentication", "keywords": [ "dynamic", "web3", "authentication", "wallet", "ethereum", "solana", "flow", "starknet", "cosmos", "bitcoin", "blockchain" ], "engines": { "node": ">=18", "bun": ">=1.0.0" }, "dependencies": { "@inquirer/prompts": "^7.4.1", "chalk": "^5.4.1", "figlet": "^1.8.1", "node-fetch": "^3.3.2", "simple-git": "^3.27.0", "typescript": "^5.8.3" }, "devDependencies": { "@eslint/compat": "^1.2.8", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.24.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.2", "@semantic-release/npm": "^11.0.0", "@types/eslint": "^9.6.1", "@types/figlet": "^1.7.0", "@types/node": "^22.14.1", "@typescript-eslint/parser": "^8.30.1", "bun-types": "^1.2.10", "conventional-changelog-cli": "^5.0.0", "eslint": "^9.24.0", "globals": "^16.0.0", "prettier": "^3.5.3", "semantic-release": "^24.2.3", "typescript-eslint": "^8.30.1" }, "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", [ "@semantic-release/npm", { "npmPublish": true } ], "@semantic-release/github" ] } }