bump version

This commit is contained in:
SrGooglo 2025-03-13 21:56:48 +00:00
parent d112e767a6
commit f8dfcab5d6
2 changed files with 21 additions and 2 deletions

View File

@ -1,27 +1,35 @@
{
"name": "@ragestudio/vessel",
"version": "0.20.0",
"version": "0.21.0",
"main": "./src/index.js",
"repository": "https://github.com/ragestudio/vessel.git",
"author": "RageStudio",
"license": "MIT",
"files": [
"src"
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build"
},
"dependencies": {
"@loadable/component": "^5.16.4",
"@vitejs/plugin-react": "^4.3.3",
"comlink": "^4.4.1",
"history": "^5.3.0",
"less": "^4.2.0",
"localforage": "^1.10.0",
"million": "^3.1.11",
"object-observer": "^6.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "^6.1.0",
"sucrase": "^3.35.0"
},
"devDependencies": {
"vite": "^6.2.1"
}
}

11
vite.config.js Normal file
View File

@ -0,0 +1,11 @@
import { defineConfig } from "vite"
import { resolve } from "path"
export default defineConfig({
build: {
lib: {
entry: resolve(__dirname, "src/index.js"),
formats: ["es"],
},
},
})