@tresjs/cientos 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ /// <reference types="vite/client" />
2
+
3
+ declare module '*.glsl' {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tresjs/cientos",
3
3
  "description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
4
- "version": "1.6.0",
4
+ "version": "1.7.0",
5
5
  "type": "module",
6
6
  "author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
7
7
  "files": [
@@ -30,26 +30,26 @@
30
30
  "threejs-vue"
31
31
  ],
32
32
  "peerDependencies": {
33
- "@tresjs/core": "^1.4.0",
33
+ "@tresjs/core": "^1.7.0",
34
34
  "three": "latest",
35
- "vue": "^3.2.45"
35
+ "vue": "^3.2.47"
36
36
  },
37
37
  "devDependencies": {
38
- "@tweakpane/plugin-essentials": "^0.1.7",
38
+ "@tweakpane/plugin-essentials": "^0.1.8",
39
39
  "@vitejs/plugin-vue": "^4.0.0",
40
- "kolorist": "^1.6.0",
41
- "pathe": "^1.0.0",
40
+ "kolorist": "^1.7.0",
41
+ "pathe": "^1.1.0",
42
42
  "rollup-plugin-analyzer": "^4.0.0",
43
43
  "rollup-plugin-visualizer": "^5.9.0",
44
- "tweakpane": "^3.1.2",
45
- "typescript": "^4.9.4",
46
- "vite": "^4.0.4",
44
+ "tweakpane": "^3.1.4",
45
+ "typescript": "^4.9.5",
46
+ "vite": "^4.1.2",
47
47
  "vite-plugin-banner": "^0.7.0",
48
- "vite-plugin-dts": "^1.7.1"
48
+ "vite-plugin-dts": "2.0.0-beta.1"
49
49
  },
50
50
  "dependencies": {
51
- "@tresjs/core": "^1.5.1",
52
- "three-stdlib": "^2.21.5"
51
+ "@tresjs/core": "^1.7.0",
52
+ "three-stdlib": "^2.21.8"
53
53
  },
54
54
  "scripts": {
55
55
  "dev": "vite",
package/dist/env.d.ts DELETED
@@ -1,20 +0,0 @@
1
- /// <reference types="vite/client" />
2
- declare module '*.vue' {
3
- import type { DefineComponent } from 'vue'
4
- // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
5
- const component: DefineComponent<{}, {}, any>
6
- export default component
7
- }
8
-
9
- declare module '*.glsl' {}
10
-
11
- declare global {
12
- // Define the window interface, with type annotations for the properties and methods of the window object
13
- interface Window {
14
- // Define the location property, with a type of Location
15
- __TRES__: {
16
- app: App
17
- version: string
18
- }
19
- }
20
- }
@@ -1,5 +0,0 @@
1
- import { Object3D } from 'three';
2
- export interface TresObject extends Object3D {
3
- geometry: THREE.BufferGeometry;
4
- material: THREE.Material;
5
- }