You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
488 B
25 lines
488 B
{
|
|
"name": "imba-module",
|
|
"type": "module",
|
|
"files": ["dist"],
|
|
"main": "./dist/index.umd.cjs",
|
|
"module": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.umd.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"start": "vite",
|
|
"build": "vite build",
|
|
"watch": "vite build --watch",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "*",
|
|
"imba": "*",
|
|
"vite-plugin-imba": "*"
|
|
}
|
|
}
|
|
|