- Rename all gooti-* files to plebian-signer-* across Chrome and Firefox - Rename GootiMetaHandler to SignerMetaHandler in common library - Update all references to use new naming convention - Add CLAUDE.md with project build/architecture documentation - Add Claude Code release command tailored for this npm/Angular project - Add NWC-IMPLEMENTATION.md design document - Add Claude skills for nostr, typescript, react, svelte, and applesauce libs - Update README and various component templates with new branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
568 B
TypeScript
27 lines
568 B
TypeScript
import type { Configuration } from 'webpack';
|
|
|
|
module.exports = {
|
|
entry: {
|
|
background: {
|
|
import: 'src/background.ts',
|
|
runtime: false,
|
|
},
|
|
'plebian-signer-extension': {
|
|
import: 'src/plebian-signer-extension.ts',
|
|
runtime: false,
|
|
},
|
|
'plebian-signer-content-script': {
|
|
import: 'src/plebian-signer-content-script.ts',
|
|
runtime: false,
|
|
},
|
|
prompt: {
|
|
import: 'src/prompt.ts',
|
|
runtime: false,
|
|
},
|
|
options: {
|
|
import: 'src/options.ts',
|
|
runtime: false,
|
|
},
|
|
},
|
|
} as Configuration;
|