@lv-x-software-house/x_view 1.2.4 → 1.2.5-dev.2

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.
Files changed (3) hide show
  1. package/dist/index.js +1684 -815
  2. package/dist/index.mjs +1691 -816
  3. package/package.json +52 -43
package/package.json CHANGED
@@ -1,45 +1,54 @@
1
1
  {
2
- "name": "@lv-x-software-house/x_view",
3
- "version": "1.2.4",
4
- "description": "Pacote privado contendo os componentes e lógica de renderização 3D do X View.",
5
- "author": "iv.x - Engenharia de Software - ivxsoftwarehouse@gmail.com",
6
- "license": "UNLICENSED",
7
- "main": "dist/index.js",
8
- "module": "dist/index.mjs",
9
- "files": [
10
- "dist"
11
- ],
12
- "scripts": {
13
- "build": "tsup src/index.js --format cjs,esm",
14
- "dev": "tsup src/index.js --format cjs,esm --dts --watch",
15
- "prepublishOnly": "npm run build"
16
- },
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/lv-x-Software-House/x_view.git"
20
- },
21
- "peerDependencies": {
22
- "@tweenjs/tween.js": "^25.0.0",
23
- "crypto-js": "^4.2.0",
24
- "next": "^16.1.6",
25
- "next-auth": "^5.0.0-beta.20",
26
- "react": "^19.2.3",
27
- "react-dom": "^19.2.3",
28
- "react-icons": "^5.0.0",
29
- "short-uuid": "^5.2.0",
30
- "three": "^0.179.0"
31
- },
32
- "devDependencies": {
33
- "@types/crypto-js": "^4.2.2",
34
- "@types/node": "^22.5.4",
35
- "@types/react": "^18.3.5",
36
- "@types/three": "^0.179.0",
37
- "patch-package": "^8.0.1",
38
- "tsup": "^8.5.0",
39
- "typescript": "^5.6.2"
40
- },
41
- "dependencies": {
42
- "@casl/ability": "^6.8.0",
43
- "react-colorful": "^5.6.1"
44
- }
2
+ "name": "@lv-x-software-house/x_view",
3
+ "version": "1.2.5-dev.2",
4
+ "description": "Pacote privado contendo os componentes e lógica de renderização 3D do X View.",
5
+ "author": "iv.x - Engenharia de Software - ivxsoftwarehouse@gmail.com",
6
+ "license": "UNLICENSED",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.mjs",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.js --format cjs,esm",
14
+ "dev": "tsup src/index.js --format cjs,esm --dts --watch",
15
+ "prepublishOnly": "npm run build",
16
+ "lint": "eslint .",
17
+ "lint:fix": "eslint . --fix"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/lv-x-Software-House/x_view.git"
22
+ },
23
+ "peerDependencies": {
24
+ "@tweenjs/tween.js": "^25.0.0",
25
+ "crypto-js": "^4.2.0",
26
+ "next": "^16.1.6",
27
+ "next-auth": "^5.0.0-beta.20",
28
+ "react": "^19.2.3",
29
+ "react-dom": "^19.2.3",
30
+ "react-icons": "^5.0.0",
31
+ "short-uuid": "^5.2.0",
32
+ "three": "^0.179.0"
33
+ },
34
+ "devDependencies": {
35
+ "@eslint/js": "^9.39.4",
36
+ "@types/crypto-js": "^4.2.2",
37
+ "@types/node": "^22.5.4",
38
+ "@types/react": "^18.3.5",
39
+ "@types/three": "^0.179.0",
40
+ "eslint": "^9.39.4",
41
+ "eslint-config-prettier": "^10.1.8",
42
+ "eslint-plugin-react": "^7.37.5",
43
+ "eslint-plugin-react-hooks": "^7.0.1",
44
+ "globals": "^17.4.0",
45
+ "patch-package": "^8.0.1",
46
+ "tsup": "^8.5.0",
47
+ "typescript": "^5.6.2",
48
+ "typescript-eslint": "^8.57.1"
49
+ },
50
+ "dependencies": {
51
+ "@casl/ability": "^6.8.0",
52
+ "react-colorful": "^5.6.1"
53
+ }
45
54
  }