generated from projects/testosmaximus
- 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
24 lines
448 B
JSON
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"
|
|
}
|
|
}
|