mirror of
https://github.com/atxp-dev/cli.git
synced 2026-09-14 20:46:39 +08:00
42 lines
828 B
JSON
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"
|
|
}
|
|
}
|