UNPKG

hashcat-rules-js

Version:

An implementation of the hashcat rules engine in javascript

19 lines (17 loc) 402 B
import { defineConfig } from 'vite'; import path from 'path'; export default defineConfig({ build: { lib: { name: 'hashcat-rules', entry: path.resolve(__dirname, 'index.js'), fileName: `hashcat-rules`, formats: ['cjs'] }, rollupOptions: { external: [], } }, resolve: { } });