npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-vueplus

v2.0.1

Published

Vue3 + Vite + TypeScript project template

Readme

VuePlus(Vue 3 + TypeScript + Vite)

一个由我自行搭建的 Vue 3 项目基础框架,基于 Vite + TypeScript,整合了 Tailwind CSS、ESLint(antfu 规范)、Prettier 等常用工程化工具,用于快速、规范地搭建前端项目

该项目不是脚手架生成物,而是一个可长期维护和扩展的工程基座


技术栈

  • Vue 3(Composition API)
  • Vite
  • TypeScript
  • Tailwind CSS v4
  • ESLint v9(Flat Config)
  • @antfu/eslint-config
  • Prettier
  • Vue Router
  • Axios
  • VueUse

项目依赖说明

运行时依赖(dependencies)

| 依赖 | 说明 | | ------------------------- | ------------------------------------ | | vue | Vue 3 核心框架 | | vue-router | 官方路由解决方案 | | axios | HTTP 请求库 | | @vueuse/core | 常用 Composition API 工具集 | | sass | SCSS 预处理器支持 | | unplugin-auto-import | 自动导入 API(如 refcomputed) | | unplugin-vue-components | 自动导入 Vue 组件 | | @tailwindcss/vite | Tailwind CSS 与 Vite 集成 | | @tailwindcss/postcss | Tailwind PostCSS 支持 | | @types/vue-router | Vue Router 类型声明 |


开发依赖(devDependencies)

| 依赖 | 说明 | | ----------------------------- | ------------------------------------------- | | vite | 开发服务器与构建工具 | | @vitejs/plugin-vue | Vite 的 Vue 插件 | | typescript | TypeScript 支持 | | vue-tsc | Vue + TS 类型检查 | | eslint | 代码质量与规范检查 | | @antfu/eslint-config | ESLint 集成配置(JS / TS / Vue / Prettier) | | prettier | 代码格式化工具 | | prettier-plugin-tailwindcss | Tailwind class 自动排序 | | @types/node | Node.js 类型支持 | | postcss | CSS 处理工具 | | @vue/tsconfig | Vue 官方 TS 基础配置 |


ESLint 规范说明

本项目采用:

  • ESLint v9(Flat Config)
  • @antfu/eslint-config

特点:

  • 无需手动安装 eslint-plugin-*
  • 内置:
    • TypeScript 解析与规则
    • Vue 规则
    • Prettier 冲突规则处理
  • 偏向 一致性 / 可读性 / 工程实践
  • 支持自动修复

常用命令

# 代码检查
pnpm lint

# 自动修复
pnpm lint:fix