Files
atxp-dev__cli/packages/atxp/package.json
2026-02-18 22:01:26 +00:00

58 lines
1.2 KiB
JSON

{
"name": "atxp",
"version": "1.10.9",
"description": "ATXP CLI - Command line tool for creating ATXP projects and running demos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/atxp-dev/cli.git"
},
"main": "dist/index.js",
"bin": {
"atxp": "dist/index.js"
},
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"atxp",
"oauth",
"payment",
"solana",
"cli",
"demo",
"create"
],
"dependencies": {
"@atxp/client": "^0.10.5",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"open": "^9.1.0",
"ora": "^7.0.1",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.13.0",
"@types/qrcode-terminal": "^0.12.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}