Added dependencies
All checks were successful
CI / build (push) Successful in 20s

This commit is contained in:
Andrey Kernichniy 2026-03-08 01:10:59 +07:00
parent 2e10cfb743
commit eadf9b0cca
3 changed files with 67 additions and 4 deletions

View file

@ -1,10 +1,17 @@
{
"name": "@gxc-solutions/lib",
"name": "@gxc-solutions/viewer-base",
"version": "0.0.1",
"main": "index.js",
"author": "GXC Solutions",
"publishConfig": {
"access": "public",
"registry": "https://npm.gxc-solutions.ru"
},
"peerDependencies": {
"@gxc-solutions/math": "0.0.1",
"@gxc-solutions/colors": "0.0.1",
"@gxc-solutions/renderer-base": "0.0.9",
"@gxc-solutions/renderer-canvas-2d": "0.0.2",
"rxjs": "7.8.2"
}
}

53
package-lock.json generated
View file

@ -1,13 +1,20 @@
{
"name": "template-of-lib-repo",
"name": "gxc-viewer-base",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "template-of-lib-repo",
"name": "gxc-viewer-base",
"version": "0.0.0",
"license": "ISC",
"dependencies": {
"@gxc-solutions/colors": "0.0.1",
"@gxc-solutions/math": "0.0.1",
"@gxc-solutions/renderer-base": "0.0.9",
"@gxc-solutions/renderer-canvas-2d": "0.0.3",
"rxjs": "7.8.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
@ -691,6 +698,33 @@
"node": "^20.19.0 || ^22.13.0 || >=24"
}
},
"node_modules/@gxc-solutions/colors": {
"version": "0.0.1",
"resolved": "https://npm.gxc-solutions.ru/@gxc-solutions/colors/-/colors-0.0.1.tgz",
"integrity": "sha512-KZ1T7V9YYxqf+jFpKhU7wxDqT14n5uqUFn2zGmVtwr4SjCWsKpq6c3eOT9OzPoQW9C8K02RzkuyBddbRowX1vg=="
},
"node_modules/@gxc-solutions/math": {
"version": "0.0.1",
"resolved": "https://npm.gxc-solutions.ru/@gxc-solutions/math/-/math-0.0.1.tgz",
"integrity": "sha512-m6lxTkjXkyaUoI3+cJKpgt/AQlyApLSJ2p9D2EJ9+XzHCSjOWs29GzczPLgopYdLEWYN/YPr77V4CScGpR7qxw=="
},
"node_modules/@gxc-solutions/renderer-base": {
"version": "0.0.9",
"resolved": "https://npm.gxc-solutions.ru/@gxc-solutions/renderer-base/-/renderer-base-0.0.9.tgz",
"integrity": "sha512-aLu3eTyzDcGQw+FsYt25MNg/6gNORXa8FynUX5rtEFinmdFEDdqxOr08dhFViw1FIT3ZdYtJbY9aegFK3V/OcA==",
"peerDependencies": {
"@gxc-solutions/math": "^0.0.1"
}
},
"node_modules/@gxc-solutions/renderer-canvas-2d": {
"version": "0.0.3",
"resolved": "https://npm.gxc-solutions.ru/@gxc-solutions/renderer-canvas-2d/-/renderer-canvas-2d-0.0.3.tgz",
"integrity": "sha512-khqllPnKmb9IstpvU5Nx8kPyTy0vUcbnWA4PniQiEDxMgm2Z3JgrcovCLTrtunNLkX3cFJKxElt24noL9f2mjg==",
"peerDependencies": {
"@gxc-solutions/math": "^0.0.1",
"@gxc-solutions/renderer-base": "^0.0.9"
}
},
"node_modules/@humanfs/core": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
@ -2331,6 +2365,15 @@
"fsevents": "~2.3.2"
}
},
"node_modules/rxjs": {
"version": "7.8.2",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
"integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/semver": {
"version": "7.7.4",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
@ -2420,6 +2463,12 @@
"typescript": ">=4.8.4"
}
},
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"license": "0BSD"
},
"node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",

View file

@ -1,5 +1,5 @@
{
"name": "template-of-lib-repo",
"name": "gxc-viewer-base",
"version": "0.0.0",
"main": "index.js",
"scripts": {
@ -29,5 +29,12 @@
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@gxc-solutions/math": "0.0.1",
"@gxc-solutions/colors": "0.0.1",
"@gxc-solutions/renderer-base": "0.0.9",
"@gxc-solutions/renderer-canvas-2d": "0.0.3",
"rxjs": "7.8.2"
}
}