Files

64 lines
1.4 KiB
JSON

{
"name": "atxp",
"version": "1.29.0",
"mcpName": "io.github.atxp-dev/atxp",
"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 && cp -r src/vendor/*.cjs dist/vendor/",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts --ignore-pattern 'src/vendor/'",
"lint:fix": "eslint . --ext .ts --fix --ignore-pattern 'src/vendor/'",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"atxp",
"oauth",
"payment",
"solana",
"cli",
"demo",
"create"
],
"dependencies": {
"@atxp/client": "^0.11.8",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"ignore": "^7.0.5",
"inquirer": "^9.2.12",
"jszip": "^3.10.1",
"open": "^9.1.0",
"ora": "^7.0.1",
"qrcode-terminal": "^0.12.0"
},
"optionalDependencies": {
"@zvec/zvec": "^0.2.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"
}
}