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

42 lines
828 B
JSON

{
"name": "create-atxp",
"version": "1.10.9",
"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.10.9"
},
"devDependencies": {
"eslint": "^9.32.0",
"globals": "^16.3.0",
"vitest": "^1.0.0"
}
}