| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "private": true,
- "name": "@pythnetwork/create-pyth-app",
- "description": "bootstrapper to quickly create a best-practices TypeScript library or application",
- "version": "0.0.0",
- "type": "module",
- "bin": {
- "create-pyth-app": "./bin/create-pyth-app"
- },
- "engines": {
- "pnpm": ">=10.19.0",
- "node": ">=22.14.0"
- },
- "files": [
- "bin/**",
- "src/**"
- ],
- "scripts": {
- "start": "tsx ./src/create-pyth-app.ts",
- "test:types": "tsc --noEmit"
- },
- "dependencies": {
- "app-root-path": "catalog:",
- "chalk": "catalog:",
- "fast-glob": "catalog:",
- "fs-extra": "catalog:",
- "micromustache": "catalog:",
- "prompts": "catalog:",
- "tsx": "catalog:"
- },
- "devDependencies": {
- "@cprussin/tsconfig": "catalog:",
- "@cprussin/eslint-config": "catalog:",
- "@types/fs-extra": "catalog:",
- "@types/prompts": "catalog:",
- "eslint": "catalog:",
- "type-fest": "catalog:"
- }
- }
|