UNPKG

@tomjs/create-app

Version:
93 lines 2.24 kB
{ "name": "@tomjs/create-app", "type": "module", "version": "1.7.0", "description": "create tomjs web app", "keywords": [ "tomjs", "front-end", "frontend", "back-end", "backend", "create", "create-app", "app", "template", "vite", "vue", "react", "electron", "vscode", "web", "node" ], "author": { "name": "Tom Gao", "email": "tom@tomgao.cc" }, "license": "MIT", "bin": { "create-app": "dist/index.js" }, "files": [ "dist", "templates/**" ], "engines": { "node": ">=18" }, "repository": { "type": "git", "url": "git+https://github.com/tomjs/create-app.git" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "dependencies": { "@tomjs/logger": "^1.1.4", "@tomjs/node": "^2.2.3", "chalk": "^5.3.0", "dayjs": "^1.11.13", "execa": "^9.3.1", "inquirer": "^10.1.8", "lodash-es": "^4.17.21", "meow": "^13.2.0" }, "devDependencies": { "@commitlint/cli": "^19.4.1", "@tomjs/commitlint": "^3.3.0", "@tomjs/eslint": "^4.4.0", "@tomjs/prettier": "^1.4.1", "@tomjs/stylelint": "^2.7.0", "@tomjs/tsconfig": "^1.7.1", "@types/inquirer": "^9.0.7", "@types/lodash-es": "^4.17.12", "@types/node": "^18.19.47", "@types/prompts": "^2.4.9", "cross-env": "^7.0.3", "dotenv": "^16.4.5", "eslint": "^9.22.0", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-react-refresh": "^0.4.19", "husky": "^9.1.5", "lint-staged": "^15.2.9", "npm-run-all": "^4.1.5", "prettier": "^3.3.3", "stylelint": "^16.9.0", "tsup": "^8.2.4", "tsx": "^4.19.0", "type-fest": "^4.26.0", "typescript": "~5.5.4" }, "scripts": { "dev": "tsup --watch", "debug": "tsx -r dotenv/config src/index.ts", "build": "tsup --minify", "lint": "run-s lint:eslint lint:stylelint lint:prettier", "lint:eslint": "eslint \"{src,templates}/**/*.{cjs,ts,tsx,vue}\" *.{cjs,ts} --fix --cache", "lint:stylelint": "stylelint \"templates/**/*.{css,scss,less,vue,html}\" --fix --cache", "lint:prettier": "prettier --write ." } }