mirror of
https://github.com/zoriya/v10.git
synced 2026-08-09 15:46:42 +00:00
- Create centralized SVG files in core icons package assets directory - Add rollup-plugin-string to core icons for SVG file processing - Export SVG_ICONS object from core package for cross-package sharing - Refactor html-icons to import SVG strings from @vjs-10/icons - Remove hardcoded SVG strings in favor of shared definitions - Add TypeScript declarations for SVG imports This establishes a foundation for sharing more code across the monorepo while maintaining proper package boundaries and build system integration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
995 B
JSON
44 lines
995 B
JSON
{
|
|
"name": "@vjs-10/icons",
|
|
"version": "0.1.0",
|
|
"description": "Environment-agnostic library of SVG icons and possibly transforms or tooling for them.",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c && tsc --project tsconfig.build.json",
|
|
"test": "echo \"No tests yet\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"icons",
|
|
"svg",
|
|
"media",
|
|
"player",
|
|
"ui"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^25.0.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
"rollup": "^4.0.0",
|
|
"rollup-plugin-string": "^3.0.0",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|