Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed Nov 6, 2023
1 parent dbf3811 commit bac2ec1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 25 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "3d-core-raub" {
type Image = import('image-raub');
type Img = typeof import('image-raub');
type TThree = typeof import('three');
type TWebgl = typeof import('webgl-raub');
type TGlfw = typeof import('glfw-raub');
Expand Down Expand Up @@ -95,7 +95,7 @@ declare module "3d-core-raub" {
* does the same thing as `new Image()`. For more info see
* [image-raub](https://github.com/node-3d/image-raub#image-for-nodejs).
*/
Image: Image,
Image: Img,

/**
* This constructor spawns a new platform window **with a web-document like interface**.
Expand Down Expand Up @@ -191,7 +191,7 @@ declare module "3d-core-raub" {
/**
* An override for Image implementation.
*/
Image?: Image,
Image?: Img,

/**
* An override for GLFW implementation.
Expand Down
20 changes: 6 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"name": "3d-core-raub",
"version": "4.1.1",
"version": "4.2.0",
"description": "An extensible Node3D core for desktop applications",
"license": "MIT",
"main": "index.js",
Expand Down Expand Up @@ -37,16 +37,10 @@
"type": "git",
"url": "https://github.com/node-3d/3d-core-raub.git"
},
"peerDependencies": {
"three": "^0.152.0"
},
"peerDependenciesMeta": {
"three": { "optional": true }
},
"dependencies": {
"addon-tools-raub": "^7.4.0",
"image-raub": "^4.2.1",
"glfw-raub": "^5.3.2",
"glfw-raub": "^5.4.0",
"webgl-raub": "^4.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit bac2ec1

Please sign in to comment.