New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pinceau

Package Overview
Dependencies
Maintainers
1
Versions
250
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pinceau

A CSS-in-JS framework built to feel like a native Vue feature.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.1K
decreased by-11.1%
Maintainers
1
Weekly downloads
 
Created
Source

🖌 pinceau

NPM version

✨ Documentation🎨 Start painting

A CSS-in-JS framework built to feel like a native Vue feature.

Install

npm i pinceau
Nuxt
// nuxt.config.js
export default defineNuxtConfig({
  modules: [
    'pinceau/nuxt',
  ],
  pinceau: {
    /* options */
  }
})

This module only works with Nuxt 3.


Vite
// vite.config.ts
import Pinceau from 'pinceau/vite'

export default defineConfig({
  plugins: [
    Pinceau({ /* options */ }),
  ],
})

Example: playground/


Rollup
// rollup.config.js
import Pinceau from 'pinceau/rollup'

export default {
  plugins: [
    Pinceau({ /* options */ }),
  ],
}


esbuild
// esbuild.config.js
import { build } from 'esbuild'
import Pinceau from 'pinceau/esbuild'

build({
  plugins: [Pinceau({ /* options */ })],
})


💖 Credits

License

MIT License © 2022-PRESENT Yaël GUILLOUX

Keywords

FAQs

Package last updated on 06 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc