Files
2026-04-02 17:09:30 +00:00

42 lines
828 B
JSON

{
"name": "create-atxp",
"version": "1.29.0",
"description": "Create ATXP projects - Scaffold new ATXP applications from templates",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/atxp-dev/cli.git"
},
"main": "index.js",
"bin": {
"create-atxp": "index.js"
},
"type": "module",
"files": [
"index.js"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"atxp",
"create",
"scaffold",
"template"
],
"dependencies": {
"atxp": "1.29.0"
},
"devDependencies": {
"eslint": "^9.32.0",
"globals": "^16.3.0",
"vitest": "^1.0.0"
}
}