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