Skip to content

Commit

Permalink
chore: rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
rickkky committed Nov 21, 2023
1 parent b9b7128 commit d045efe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# glas
# vectrix

Graphics linear algebra subroutine. A easy-to-use math library to perform vector and matrix operations in JavaScript/TypeScript, designed for the needs of graphics apis like WebGL or WebGPU.
A easy-to-use math library to perform vector and matrix operations in JavaScript/TypeScript, designed for the needs of graphics apis like WebGL or WebGPU.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "glas",
"version": "0.1.1",
"description": "Graphics linear algebra subroutine. A easy-to-use math library to perform vector and matrix operations in JavaScript/TypeScript, designed for the needs of graphics apis like WebGL or WebGPU.",
"name": "vectrix",
"version": "0.0.0",
"description": "A easy-to-use math library to perform vector and matrix operations in JavaScript/TypeScript, designed for the needs of graphics apis like WebGL or WebGPU.",
"keywords": [
"math",
"linear-algebra",
Expand All @@ -16,14 +16,14 @@
"files": [
"dist"
],
"main": "./dist/glas.umd.cjs",
"module": "./dist/glas.js",
"types": "./dist/glas.d.ts",
"main": "./dist/vectrix.umd.cjs",
"module": "./dist/vectrix.js",
"types": "./dist/vectrix.d.ts",
"exports": {
".": {
"import": "./dist/glas.js",
"require": "./dist/glas.umd.cjs",
"types": "./dist/glas.d.ts"
"import": "./dist/vectrix.js",
"require": "./dist/vectrix.umd.cjs",
"types": "./dist/vectrix.d.ts"
}
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default defineConfig(() => {
build: {
lib: {
entry: resolve(__dirname, 'src/index.ts'),
name: 'glas',
fileName: 'glas',
name: 'vectrix',
fileName: 'vectrix',
},
},
plugins: [
Expand Down

0 comments on commit d045efe

Please sign in to comment.