feat: выпустить версию 1.0.0

- добавлены отдельные режимы генерации для React, Next.js и legacy
- добавлены SpriteViewer, типизированные компоненты и безопасный codegen
- перенесена сборка AI-скила и обновлена документация
- добавлены migration guide, лицензии и проверки публикации
This commit is contained in:
2026-07-11 07:00:59 +03:00
parent 3a60b5c6ae
commit 05a0a9f7ed
76 changed files with 9456 additions and 1033 deletions

View File

@@ -4,14 +4,12 @@ export default defineConfig({
entry: {
index: 'src/index.ts',
cli: 'src/cli.ts',
react: 'src/react.ts',
},
format: 'esm',
dts: true,
clean: true,
sourcemap: true,
target: 'node18',
banner: ({ format }) => {
// cli.js needs a shebang for npx/bin usage
return {}
},
noExternal: ['react-colorful'],
})