Gathering detailed insights and metrics for uno-inspect
Gathering detailed insights and metrics for uno-inspect
npm install uno-inspect
Typescript
Module System
Node Version
NPM Version
44.1
Supply Chain
63.5
Quality
75.6
Maintenance
100
Vulnerability
97.6
License
Total Downloads
125
Last Day
1
Last Week
2
Last Month
5
Last Year
49
Minified
Minified + Gzipped
Latest Version
0.0.1
Package Id
uno-inspect@0.0.1
Unpacked Size
25.48 kB
Size
5.17 kB
File Count
42
NPM Version
10.2.3
Node Version
20.10.0
Publised On
08 Dec 2023
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
2
Compared to previous week
Last month
150%
5
Compared to previous month
Last year
-35.5%
49
Compared to previous year
2
Starter template for unplugin.
To use this template, clone it down using:
1npx degit unplugin/unplugin-starter my-unplugin
And do a global replacement of unplugin-starter
with your plugin name.
Then you can start developing your unplugin 🔥
To test your plugin, run: pnpm run dev
To release a new version, run: pnpm run release
1npm i unplugin-starter
1// vite.config.ts 2import Starter from 'unplugin-starter/vite' 3 4export default defineConfig({ 5 plugins: [ 6 Starter({ /* options */ }), 7 ], 8})
Example: playground/
1// rollup.config.js 2import Starter from 'unplugin-starter/rollup' 3 4export default { 5 plugins: [ 6 Starter({ /* options */ }), 7 ], 8}
1// webpack.config.js 2module.exports = { 3 /* ... */ 4 plugins: [ 5 require('unplugin-starter/webpack')({ /* options */ }) 6 ] 7}
1// nuxt.config.js 2export default defineNuxtConfig({ 3 modules: [ 4 ['unplugin-starter/nuxt', { /* options */ }], 5 ], 6})
This module works for both Nuxt 2 and Nuxt Vite
1// vue.config.js 2module.exports = { 3 configureWebpack: { 4 plugins: [ 5 require('unplugin-starter/webpack')({ /* options */ }), 6 ], 7 }, 8}
1// esbuild.config.js 2import { build } from 'esbuild' 3import Starter from 'unplugin-starter/esbuild' 4 5build({ 6 plugins: [Starter()], 7})
No vulnerabilities found.
No security vulnerabilities found.