funkyFlaskTest/source/package.json
Dominik Krenn 6672ce76b0 refactor: update package configuration and change module system
- Renamed package to @funky-flask-test/funky-flask-test and updated version to 1.0.0
- Changed module type to ES2020 and updated exports for better compatibility
- Added new scripts for development and preview using Vite
- Replaced existing function with insertRickLabel that creates a clickable label to open a Rickroll link
- Updated TypeScript configuration to reflect new module system and output directory
2025-07-19 11:17:39 +02:00

24 lines
448 B
JSON

{
"name": "@funky-flask-test/funky-flask-test",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"dev": "vite",
"build": "tsc",
"preview": "vite preview"
},
"devDependencies": {
"vite": "^5.0.0",
"typescript": "^5.0.0"
}
}