@nosana/node 1.1.5-rc → 1.1.6-rc

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.
package/dist/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@nosana/node",
3
- "version": "1.1.5-rc",
3
+ "version": "1.1.6-rc",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "nosana-node": "./dist/src/index.js"
7
7
  },
8
8
  "type": "module",
9
9
  "scripts": {
10
- "dev:start": "./docker-run.sh start --docker /var/run/docker.sock",
11
- "dev:run": "./docker-run.sh run --docker /var/run/docker.sock",
10
+ "dev": "APP_ENV=development node --no-warnings --loader ts-node/esm src/index.ts",
12
11
  "build": "npm run prepare && tsc && cp .env ./dist/ && cp .env.prd ./dist/ && cp .env.dev ./dist/",
13
12
  "generate": "openapi-typescript http://dashboard.k8s.prd.nos.ci/api/swagger/json -o ./src/NodeManager/client/schema.d.ts",
14
13
  "test": "APP_ENV=development DOCKER_CERT_PATH= vitest run",
@@ -58,7 +57,6 @@
58
57
  "eslint-plugin-prettier": "^4.2.1",
59
58
  "eslint-plugin-promise": "^6.0.0",
60
59
  "husky": "^9.1.7",
61
- "nodemon": "^3.0.2",
62
60
  "prettier": "^2.8.8",
63
61
  "ts-node": "^10.9.2",
64
62
  "typescript": "^5.3.2",
@@ -16,7 +16,6 @@ export type configType = {
16
16
  };
17
17
  minDiskSpace: number;
18
18
  network: 'devnet' | 'mainnet';
19
- spinnerInterval: number;
20
19
  };
21
20
  export declare const configs: (options?: {
22
21
  [key: string]: any;
@@ -20,6 +20,5 @@ export const configs = (options) => {
20
20
  },
21
21
  minDiskSpace: parseInt(loadConfigurationValue('MIN_DISK_SPACE')),
22
22
  network: options?.network ?? 'mainnet',
23
- spinnerInterval: parseInt(loadConfigurationValue('SPINNER_INTERVAL', '5000')),
24
23
  };
25
24
  };
@@ -4,7 +4,6 @@ import { MultiBar, Presets, SingleBar } from 'cli-progress';
4
4
  import { log } from '../NodeLog.js';
5
5
  import { convertFromBytes } from '../../../utils/convertFromBytes.js';
6
6
  import { formatTime } from '../../../utils/formatTime.js';
7
- import { configs } from '../../../configs/configs.js';
8
7
  export const consoleLogging = (() => {
9
8
  let instance = null;
10
9
  return () => {
@@ -48,7 +47,7 @@ export class ConsoleLogger {
48
47
  if (isNode && this.taskManagerActive) {
49
48
  this.spinner.succeed(renderBase + ' Exited');
50
49
  }
51
- this.spinner = ora({ text: log.log, interval: configs().spinnerInterval }).start();
50
+ this.spinner = ora(log.log).start();
52
51
  }
53
52
  if (this.kill) {
54
53
  if (log.type == 'kill-success') {
@@ -84,7 +83,7 @@ export class ConsoleLogger {
84
83
  this.expiry = log.payload?.expiry;
85
84
  const startTime = Date.now();
86
85
  const renderBar = (duration = 0) => `${renderBase} ${chalk.bgYellow.black.bold(` ⏱ Duration: ${formatTime(duration)} `)} ${chalk.reset('')} ${chalk.bgBlue.black.bold(` ⚡ Max Duration: ${formatTime(this.expiry ?? 0)} `)}`;
87
- this.spinner = ora({ text: renderBar(0), interval: configs().spinnerInterval }).start();
86
+ this.spinner = ora(renderBar(0)).start();
88
87
  this.taskManagerRunInterval = setInterval(() => {
89
88
  if (this.taskManagerActive) {
90
89
  const duration = (Date.now() - startTime) / 1000;
@@ -114,7 +113,7 @@ export class ConsoleLogger {
114
113
  log.type == 'process') {
115
114
  this.benchmarking = true;
116
115
  this.pending = true;
117
- this.spinner = ora({ text: chalk.green(`${chalk.bgGreen.bold(' Checking Specs ')}`), interval: configs().spinnerInterval }).start();
116
+ this.spinner = ora(chalk.green(`${chalk.bgGreen.bold(' Checking Specs ')}`)).start();
118
117
  return;
119
118
  }
120
119
  if (this.benchmarking) {
@@ -290,7 +289,7 @@ export class ConsoleLogger {
290
289
  if (log.pending?.isPending) {
291
290
  this.pending = true;
292
291
  this.expecting = log.pending?.expecting;
293
- this.spinner = ora({ text: log.log, interval: configs().spinnerInterval }).start();
292
+ this.spinner = ora(log.log).start();
294
293
  }
295
294
  else {
296
295
  console.log(log.log);
@@ -1,6 +1,5 @@
1
1
  import ora from 'ora';
2
2
  import chalk from 'chalk';
3
- import { configs } from '../../configs/configs.js';
4
3
  const MINIMUM_SOL_BALANCE = 0.005;
5
4
  const SOLANA_DECIMAL = 1e9;
6
5
  export class BalanceHandler {
@@ -42,7 +41,7 @@ export class BalanceHandler {
42
41
  if (!wait) {
43
42
  throw new Error(insufficentSolMessage);
44
43
  }
45
- const spinner = ora({ text: chalk.yellow(insufficentSolMessage), interval: configs().spinnerInterval }).start();
44
+ const spinner = ora(chalk.yellow(insufficentSolMessage)).start();
46
45
  await this.waitForSufficentSol();
47
46
  spinner.succeed();
48
47
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@nosana/node",
3
- "version": "1.1.5-rc",
3
+ "version": "1.1.6-rc",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@nosana/node",
9
- "version": "1.1.5-rc",
9
+ "version": "1.1.6-rc",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@coral-xyz/anchor": "^0.28.1-beta.1",
@@ -69,7 +69,6 @@
69
69
  "eslint-plugin-prettier": "^4.2.1",
70
70
  "eslint-plugin-promise": "^6.0.0",
71
71
  "husky": "^9.1.7",
72
- "nodemon": "^3.0.2",
73
72
  "prettier": "^2.8.8",
74
73
  "ts-node": "^10.9.2",
75
74
  "typescript": "^5.3.2",
@@ -3322,20 +3321,6 @@
3322
3321
  "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3323
3322
  }
3324
3323
  },
3325
- "node_modules/anymatch": {
3326
- "version": "3.1.3",
3327
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
3328
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
3329
- "dev": true,
3330
- "license": "ISC",
3331
- "dependencies": {
3332
- "normalize-path": "^3.0.0",
3333
- "picomatch": "^2.0.4"
3334
- },
3335
- "engines": {
3336
- "node": ">= 8"
3337
- }
3338
- },
3339
3324
  "node_modules/arg": {
3340
3325
  "version": "4.1.3",
3341
3326
  "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
@@ -3598,19 +3583,6 @@
3598
3583
  "node": "*"
3599
3584
  }
3600
3585
  },
3601
- "node_modules/binary-extensions": {
3602
- "version": "2.3.0",
3603
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
3604
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
3605
- "dev": true,
3606
- "license": "MIT",
3607
- "engines": {
3608
- "node": ">=8"
3609
- },
3610
- "funding": {
3611
- "url": "https://github.com/sponsors/sindresorhus"
3612
- }
3613
- },
3614
3586
  "node_modules/bindings": {
3615
3587
  "version": "1.5.0",
3616
3588
  "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
@@ -3881,44 +3853,6 @@
3881
3853
  "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
3882
3854
  "license": "MIT"
3883
3855
  },
3884
- "node_modules/chokidar": {
3885
- "version": "3.6.0",
3886
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
3887
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
3888
- "dev": true,
3889
- "license": "MIT",
3890
- "dependencies": {
3891
- "anymatch": "~3.1.2",
3892
- "braces": "~3.0.2",
3893
- "glob-parent": "~5.1.2",
3894
- "is-binary-path": "~2.1.0",
3895
- "is-glob": "~4.0.1",
3896
- "normalize-path": "~3.0.0",
3897
- "readdirp": "~3.6.0"
3898
- },
3899
- "engines": {
3900
- "node": ">= 8.10.0"
3901
- },
3902
- "funding": {
3903
- "url": "https://paulmillr.com/funding/"
3904
- },
3905
- "optionalDependencies": {
3906
- "fsevents": "~2.3.2"
3907
- }
3908
- },
3909
- "node_modules/chokidar/node_modules/glob-parent": {
3910
- "version": "5.1.2",
3911
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
3912
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
3913
- "dev": true,
3914
- "license": "ISC",
3915
- "dependencies": {
3916
- "is-glob": "^4.0.1"
3917
- },
3918
- "engines": {
3919
- "node": ">= 6"
3920
- }
3921
- },
3922
3856
  "node_modules/chownr": {
3923
3857
  "version": "2.0.0",
3924
3858
  "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
@@ -5772,21 +5706,6 @@
5772
5706
  "url": "https://github.com/sponsors/ljharb"
5773
5707
  }
5774
5708
  },
5775
- "node_modules/get-tsconfig": {
5776
- "version": "4.13.6",
5777
- "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
5778
- "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
5779
- "dev": true,
5780
- "license": "MIT",
5781
- "optional": true,
5782
- "peer": true,
5783
- "dependencies": {
5784
- "resolve-pkg-maps": "^1.0.0"
5785
- },
5786
- "funding": {
5787
- "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
5788
- }
5789
- },
5790
5709
  "node_modules/glob": {
5791
5710
  "version": "7.2.3",
5792
5711
  "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
@@ -6112,13 +6031,6 @@
6112
6031
  "node": ">= 4"
6113
6032
  }
6114
6033
  },
6115
- "node_modules/ignore-by-default": {
6116
- "version": "1.0.1",
6117
- "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
6118
- "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
6119
- "dev": true,
6120
- "license": "ISC"
6121
- },
6122
6034
  "node_modules/ignore-file": {
6123
6035
  "version": "1.1.3",
6124
6036
  "resolved": "https://registry.npmjs.org/ignore-file/-/ignore-file-1.1.3.tgz",
@@ -6457,19 +6369,6 @@
6457
6369
  "url": "https://github.com/sponsors/ljharb"
6458
6370
  }
6459
6371
  },
6460
- "node_modules/is-binary-path": {
6461
- "version": "2.1.0",
6462
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
6463
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
6464
- "dev": true,
6465
- "license": "MIT",
6466
- "dependencies": {
6467
- "binary-extensions": "^2.0.0"
6468
- },
6469
- "engines": {
6470
- "node": ">=8"
6471
- }
6472
- },
6473
6372
  "node_modules/is-boolean-object": {
6474
6373
  "version": "1.1.2",
6475
6374
  "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
@@ -7374,68 +7273,6 @@
7374
7273
  "node-gyp-build-test": "build-test.js"
7375
7274
  }
7376
7275
  },
7377
- "node_modules/nodemon": {
7378
- "version": "3.1.11",
7379
- "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.11.tgz",
7380
- "integrity": "sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==",
7381
- "dev": true,
7382
- "license": "MIT",
7383
- "dependencies": {
7384
- "chokidar": "^3.5.2",
7385
- "debug": "^4",
7386
- "ignore-by-default": "^1.0.1",
7387
- "minimatch": "^3.1.2",
7388
- "pstree.remy": "^1.1.8",
7389
- "semver": "^7.5.3",
7390
- "simple-update-notifier": "^2.0.0",
7391
- "supports-color": "^5.5.0",
7392
- "touch": "^3.1.0",
7393
- "undefsafe": "^2.0.5"
7394
- },
7395
- "bin": {
7396
- "nodemon": "bin/nodemon.js"
7397
- },
7398
- "engines": {
7399
- "node": ">=10"
7400
- },
7401
- "funding": {
7402
- "type": "opencollective",
7403
- "url": "https://opencollective.com/nodemon"
7404
- }
7405
- },
7406
- "node_modules/nodemon/node_modules/has-flag": {
7407
- "version": "3.0.0",
7408
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
7409
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
7410
- "dev": true,
7411
- "license": "MIT",
7412
- "engines": {
7413
- "node": ">=4"
7414
- }
7415
- },
7416
- "node_modules/nodemon/node_modules/supports-color": {
7417
- "version": "5.5.0",
7418
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
7419
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
7420
- "dev": true,
7421
- "license": "MIT",
7422
- "dependencies": {
7423
- "has-flag": "^3.0.0"
7424
- },
7425
- "engines": {
7426
- "node": ">=4"
7427
- }
7428
- },
7429
- "node_modules/normalize-path": {
7430
- "version": "3.0.0",
7431
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
7432
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
7433
- "dev": true,
7434
- "license": "MIT",
7435
- "engines": {
7436
- "node": ">=0.10.0"
7437
- }
7438
- },
7439
7276
  "node_modules/object-assign": {
7440
7277
  "version": "4.1.1",
7441
7278
  "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
@@ -8038,13 +7875,6 @@
8038
7875
  "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
8039
7876
  "license": "MIT"
8040
7877
  },
8041
- "node_modules/pstree.remy": {
8042
- "version": "1.1.8",
8043
- "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
8044
- "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
8045
- "dev": true,
8046
- "license": "MIT"
8047
- },
8048
7878
  "node_modules/pump": {
8049
7879
  "version": "3.0.0",
8050
7880
  "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
@@ -8148,19 +7978,6 @@
8148
7978
  "node": ">= 6"
8149
7979
  }
8150
7980
  },
8151
- "node_modules/readdirp": {
8152
- "version": "3.6.0",
8153
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
8154
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
8155
- "dev": true,
8156
- "license": "MIT",
8157
- "dependencies": {
8158
- "picomatch": "^2.2.1"
8159
- },
8160
- "engines": {
8161
- "node": ">=8.10.0"
8162
- }
8163
- },
8164
7981
  "node_modules/regenerator-runtime": {
8165
7982
  "version": "0.14.1",
8166
7983
  "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
@@ -8242,18 +8059,6 @@
8242
8059
  "node": ">=4"
8243
8060
  }
8244
8061
  },
8245
- "node_modules/resolve-pkg-maps": {
8246
- "version": "1.0.0",
8247
- "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
8248
- "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
8249
- "dev": true,
8250
- "license": "MIT",
8251
- "optional": true,
8252
- "peer": true,
8253
- "funding": {
8254
- "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
8255
- }
8256
- },
8257
8062
  "node_modules/restore-cursor": {
8258
8063
  "version": "4.0.0",
8259
8064
  "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz",
@@ -8603,19 +8408,6 @@
8603
8408
  "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
8604
8409
  "license": "ISC"
8605
8410
  },
8606
- "node_modules/simple-update-notifier": {
8607
- "version": "2.0.0",
8608
- "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
8609
- "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
8610
- "dev": true,
8611
- "license": "MIT",
8612
- "dependencies": {
8613
- "semver": "^7.5.3"
8614
- },
8615
- "engines": {
8616
- "node": ">=10"
8617
- }
8618
- },
8619
8411
  "node_modules/simple-wcswidth": {
8620
8412
  "version": "1.1.2",
8621
8413
  "resolved": "https://registry.npmjs.org/simple-wcswidth/-/simple-wcswidth-1.1.2.tgz",
@@ -9112,16 +8904,6 @@
9112
8904
  "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==",
9113
8905
  "license": "MIT"
9114
8906
  },
9115
- "node_modules/touch": {
9116
- "version": "3.1.1",
9117
- "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
9118
- "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
9119
- "dev": true,
9120
- "license": "ISC",
9121
- "bin": {
9122
- "nodetouch": "bin/nodetouch.js"
9123
- }
9124
- },
9125
8907
  "node_modules/tr46": {
9126
8908
  "version": "0.0.3",
9127
8909
  "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
@@ -9262,540 +9044,6 @@
9262
9044
  "dev": true,
9263
9045
  "license": "0BSD"
9264
9046
  },
9265
- "node_modules/tsx": {
9266
- "version": "4.21.0",
9267
- "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz",
9268
- "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
9269
- "dev": true,
9270
- "license": "MIT",
9271
- "optional": true,
9272
- "peer": true,
9273
- "dependencies": {
9274
- "esbuild": "~0.27.0",
9275
- "get-tsconfig": "^4.7.5"
9276
- },
9277
- "bin": {
9278
- "tsx": "dist/cli.mjs"
9279
- },
9280
- "engines": {
9281
- "node": ">=18.0.0"
9282
- },
9283
- "optionalDependencies": {
9284
- "fsevents": "~2.3.3"
9285
- }
9286
- },
9287
- "node_modules/tsx/node_modules/@esbuild/aix-ppc64": {
9288
- "version": "0.27.3",
9289
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
9290
- "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
9291
- "cpu": [
9292
- "ppc64"
9293
- ],
9294
- "dev": true,
9295
- "license": "MIT",
9296
- "optional": true,
9297
- "os": [
9298
- "aix"
9299
- ],
9300
- "peer": true,
9301
- "engines": {
9302
- "node": ">=18"
9303
- }
9304
- },
9305
- "node_modules/tsx/node_modules/@esbuild/android-arm": {
9306
- "version": "0.27.3",
9307
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
9308
- "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
9309
- "cpu": [
9310
- "arm"
9311
- ],
9312
- "dev": true,
9313
- "license": "MIT",
9314
- "optional": true,
9315
- "os": [
9316
- "android"
9317
- ],
9318
- "peer": true,
9319
- "engines": {
9320
- "node": ">=18"
9321
- }
9322
- },
9323
- "node_modules/tsx/node_modules/@esbuild/android-arm64": {
9324
- "version": "0.27.3",
9325
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
9326
- "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
9327
- "cpu": [
9328
- "arm64"
9329
- ],
9330
- "dev": true,
9331
- "license": "MIT",
9332
- "optional": true,
9333
- "os": [
9334
- "android"
9335
- ],
9336
- "peer": true,
9337
- "engines": {
9338
- "node": ">=18"
9339
- }
9340
- },
9341
- "node_modules/tsx/node_modules/@esbuild/android-x64": {
9342
- "version": "0.27.3",
9343
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
9344
- "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
9345
- "cpu": [
9346
- "x64"
9347
- ],
9348
- "dev": true,
9349
- "license": "MIT",
9350
- "optional": true,
9351
- "os": [
9352
- "android"
9353
- ],
9354
- "peer": true,
9355
- "engines": {
9356
- "node": ">=18"
9357
- }
9358
- },
9359
- "node_modules/tsx/node_modules/@esbuild/darwin-arm64": {
9360
- "version": "0.27.3",
9361
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
9362
- "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
9363
- "cpu": [
9364
- "arm64"
9365
- ],
9366
- "dev": true,
9367
- "license": "MIT",
9368
- "optional": true,
9369
- "os": [
9370
- "darwin"
9371
- ],
9372
- "peer": true,
9373
- "engines": {
9374
- "node": ">=18"
9375
- }
9376
- },
9377
- "node_modules/tsx/node_modules/@esbuild/darwin-x64": {
9378
- "version": "0.27.3",
9379
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
9380
- "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
9381
- "cpu": [
9382
- "x64"
9383
- ],
9384
- "dev": true,
9385
- "license": "MIT",
9386
- "optional": true,
9387
- "os": [
9388
- "darwin"
9389
- ],
9390
- "peer": true,
9391
- "engines": {
9392
- "node": ">=18"
9393
- }
9394
- },
9395
- "node_modules/tsx/node_modules/@esbuild/freebsd-arm64": {
9396
- "version": "0.27.3",
9397
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
9398
- "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
9399
- "cpu": [
9400
- "arm64"
9401
- ],
9402
- "dev": true,
9403
- "license": "MIT",
9404
- "optional": true,
9405
- "os": [
9406
- "freebsd"
9407
- ],
9408
- "peer": true,
9409
- "engines": {
9410
- "node": ">=18"
9411
- }
9412
- },
9413
- "node_modules/tsx/node_modules/@esbuild/freebsd-x64": {
9414
- "version": "0.27.3",
9415
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
9416
- "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
9417
- "cpu": [
9418
- "x64"
9419
- ],
9420
- "dev": true,
9421
- "license": "MIT",
9422
- "optional": true,
9423
- "os": [
9424
- "freebsd"
9425
- ],
9426
- "peer": true,
9427
- "engines": {
9428
- "node": ">=18"
9429
- }
9430
- },
9431
- "node_modules/tsx/node_modules/@esbuild/linux-arm": {
9432
- "version": "0.27.3",
9433
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
9434
- "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
9435
- "cpu": [
9436
- "arm"
9437
- ],
9438
- "dev": true,
9439
- "license": "MIT",
9440
- "optional": true,
9441
- "os": [
9442
- "linux"
9443
- ],
9444
- "peer": true,
9445
- "engines": {
9446
- "node": ">=18"
9447
- }
9448
- },
9449
- "node_modules/tsx/node_modules/@esbuild/linux-arm64": {
9450
- "version": "0.27.3",
9451
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
9452
- "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
9453
- "cpu": [
9454
- "arm64"
9455
- ],
9456
- "dev": true,
9457
- "license": "MIT",
9458
- "optional": true,
9459
- "os": [
9460
- "linux"
9461
- ],
9462
- "peer": true,
9463
- "engines": {
9464
- "node": ">=18"
9465
- }
9466
- },
9467
- "node_modules/tsx/node_modules/@esbuild/linux-ia32": {
9468
- "version": "0.27.3",
9469
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
9470
- "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
9471
- "cpu": [
9472
- "ia32"
9473
- ],
9474
- "dev": true,
9475
- "license": "MIT",
9476
- "optional": true,
9477
- "os": [
9478
- "linux"
9479
- ],
9480
- "peer": true,
9481
- "engines": {
9482
- "node": ">=18"
9483
- }
9484
- },
9485
- "node_modules/tsx/node_modules/@esbuild/linux-loong64": {
9486
- "version": "0.27.3",
9487
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
9488
- "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
9489
- "cpu": [
9490
- "loong64"
9491
- ],
9492
- "dev": true,
9493
- "license": "MIT",
9494
- "optional": true,
9495
- "os": [
9496
- "linux"
9497
- ],
9498
- "peer": true,
9499
- "engines": {
9500
- "node": ">=18"
9501
- }
9502
- },
9503
- "node_modules/tsx/node_modules/@esbuild/linux-mips64el": {
9504
- "version": "0.27.3",
9505
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
9506
- "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
9507
- "cpu": [
9508
- "mips64el"
9509
- ],
9510
- "dev": true,
9511
- "license": "MIT",
9512
- "optional": true,
9513
- "os": [
9514
- "linux"
9515
- ],
9516
- "peer": true,
9517
- "engines": {
9518
- "node": ">=18"
9519
- }
9520
- },
9521
- "node_modules/tsx/node_modules/@esbuild/linux-ppc64": {
9522
- "version": "0.27.3",
9523
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
9524
- "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
9525
- "cpu": [
9526
- "ppc64"
9527
- ],
9528
- "dev": true,
9529
- "license": "MIT",
9530
- "optional": true,
9531
- "os": [
9532
- "linux"
9533
- ],
9534
- "peer": true,
9535
- "engines": {
9536
- "node": ">=18"
9537
- }
9538
- },
9539
- "node_modules/tsx/node_modules/@esbuild/linux-riscv64": {
9540
- "version": "0.27.3",
9541
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
9542
- "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
9543
- "cpu": [
9544
- "riscv64"
9545
- ],
9546
- "dev": true,
9547
- "license": "MIT",
9548
- "optional": true,
9549
- "os": [
9550
- "linux"
9551
- ],
9552
- "peer": true,
9553
- "engines": {
9554
- "node": ">=18"
9555
- }
9556
- },
9557
- "node_modules/tsx/node_modules/@esbuild/linux-s390x": {
9558
- "version": "0.27.3",
9559
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
9560
- "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
9561
- "cpu": [
9562
- "s390x"
9563
- ],
9564
- "dev": true,
9565
- "license": "MIT",
9566
- "optional": true,
9567
- "os": [
9568
- "linux"
9569
- ],
9570
- "peer": true,
9571
- "engines": {
9572
- "node": ">=18"
9573
- }
9574
- },
9575
- "node_modules/tsx/node_modules/@esbuild/linux-x64": {
9576
- "version": "0.27.3",
9577
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
9578
- "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
9579
- "cpu": [
9580
- "x64"
9581
- ],
9582
- "dev": true,
9583
- "license": "MIT",
9584
- "optional": true,
9585
- "os": [
9586
- "linux"
9587
- ],
9588
- "peer": true,
9589
- "engines": {
9590
- "node": ">=18"
9591
- }
9592
- },
9593
- "node_modules/tsx/node_modules/@esbuild/netbsd-arm64": {
9594
- "version": "0.27.3",
9595
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
9596
- "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
9597
- "cpu": [
9598
- "arm64"
9599
- ],
9600
- "dev": true,
9601
- "license": "MIT",
9602
- "optional": true,
9603
- "os": [
9604
- "netbsd"
9605
- ],
9606
- "peer": true,
9607
- "engines": {
9608
- "node": ">=18"
9609
- }
9610
- },
9611
- "node_modules/tsx/node_modules/@esbuild/netbsd-x64": {
9612
- "version": "0.27.3",
9613
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
9614
- "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
9615
- "cpu": [
9616
- "x64"
9617
- ],
9618
- "dev": true,
9619
- "license": "MIT",
9620
- "optional": true,
9621
- "os": [
9622
- "netbsd"
9623
- ],
9624
- "peer": true,
9625
- "engines": {
9626
- "node": ">=18"
9627
- }
9628
- },
9629
- "node_modules/tsx/node_modules/@esbuild/openbsd-arm64": {
9630
- "version": "0.27.3",
9631
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
9632
- "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
9633
- "cpu": [
9634
- "arm64"
9635
- ],
9636
- "dev": true,
9637
- "license": "MIT",
9638
- "optional": true,
9639
- "os": [
9640
- "openbsd"
9641
- ],
9642
- "peer": true,
9643
- "engines": {
9644
- "node": ">=18"
9645
- }
9646
- },
9647
- "node_modules/tsx/node_modules/@esbuild/openbsd-x64": {
9648
- "version": "0.27.3",
9649
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
9650
- "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
9651
- "cpu": [
9652
- "x64"
9653
- ],
9654
- "dev": true,
9655
- "license": "MIT",
9656
- "optional": true,
9657
- "os": [
9658
- "openbsd"
9659
- ],
9660
- "peer": true,
9661
- "engines": {
9662
- "node": ">=18"
9663
- }
9664
- },
9665
- "node_modules/tsx/node_modules/@esbuild/openharmony-arm64": {
9666
- "version": "0.27.3",
9667
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
9668
- "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
9669
- "cpu": [
9670
- "arm64"
9671
- ],
9672
- "dev": true,
9673
- "license": "MIT",
9674
- "optional": true,
9675
- "os": [
9676
- "openharmony"
9677
- ],
9678
- "peer": true,
9679
- "engines": {
9680
- "node": ">=18"
9681
- }
9682
- },
9683
- "node_modules/tsx/node_modules/@esbuild/sunos-x64": {
9684
- "version": "0.27.3",
9685
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
9686
- "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
9687
- "cpu": [
9688
- "x64"
9689
- ],
9690
- "dev": true,
9691
- "license": "MIT",
9692
- "optional": true,
9693
- "os": [
9694
- "sunos"
9695
- ],
9696
- "peer": true,
9697
- "engines": {
9698
- "node": ">=18"
9699
- }
9700
- },
9701
- "node_modules/tsx/node_modules/@esbuild/win32-arm64": {
9702
- "version": "0.27.3",
9703
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
9704
- "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
9705
- "cpu": [
9706
- "arm64"
9707
- ],
9708
- "dev": true,
9709
- "license": "MIT",
9710
- "optional": true,
9711
- "os": [
9712
- "win32"
9713
- ],
9714
- "peer": true,
9715
- "engines": {
9716
- "node": ">=18"
9717
- }
9718
- },
9719
- "node_modules/tsx/node_modules/@esbuild/win32-ia32": {
9720
- "version": "0.27.3",
9721
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
9722
- "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
9723
- "cpu": [
9724
- "ia32"
9725
- ],
9726
- "dev": true,
9727
- "license": "MIT",
9728
- "optional": true,
9729
- "os": [
9730
- "win32"
9731
- ],
9732
- "peer": true,
9733
- "engines": {
9734
- "node": ">=18"
9735
- }
9736
- },
9737
- "node_modules/tsx/node_modules/@esbuild/win32-x64": {
9738
- "version": "0.27.3",
9739
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
9740
- "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
9741
- "cpu": [
9742
- "x64"
9743
- ],
9744
- "dev": true,
9745
- "license": "MIT",
9746
- "optional": true,
9747
- "os": [
9748
- "win32"
9749
- ],
9750
- "peer": true,
9751
- "engines": {
9752
- "node": ">=18"
9753
- }
9754
- },
9755
- "node_modules/tsx/node_modules/esbuild": {
9756
- "version": "0.27.3",
9757
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
9758
- "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
9759
- "dev": true,
9760
- "hasInstallScript": true,
9761
- "license": "MIT",
9762
- "optional": true,
9763
- "peer": true,
9764
- "bin": {
9765
- "esbuild": "bin/esbuild"
9766
- },
9767
- "engines": {
9768
- "node": ">=18"
9769
- },
9770
- "optionalDependencies": {
9771
- "@esbuild/aix-ppc64": "0.27.3",
9772
- "@esbuild/android-arm": "0.27.3",
9773
- "@esbuild/android-arm64": "0.27.3",
9774
- "@esbuild/android-x64": "0.27.3",
9775
- "@esbuild/darwin-arm64": "0.27.3",
9776
- "@esbuild/darwin-x64": "0.27.3",
9777
- "@esbuild/freebsd-arm64": "0.27.3",
9778
- "@esbuild/freebsd-x64": "0.27.3",
9779
- "@esbuild/linux-arm": "0.27.3",
9780
- "@esbuild/linux-arm64": "0.27.3",
9781
- "@esbuild/linux-ia32": "0.27.3",
9782
- "@esbuild/linux-loong64": "0.27.3",
9783
- "@esbuild/linux-mips64el": "0.27.3",
9784
- "@esbuild/linux-ppc64": "0.27.3",
9785
- "@esbuild/linux-riscv64": "0.27.3",
9786
- "@esbuild/linux-s390x": "0.27.3",
9787
- "@esbuild/linux-x64": "0.27.3",
9788
- "@esbuild/netbsd-arm64": "0.27.3",
9789
- "@esbuild/netbsd-x64": "0.27.3",
9790
- "@esbuild/openbsd-arm64": "0.27.3",
9791
- "@esbuild/openbsd-x64": "0.27.3",
9792
- "@esbuild/openharmony-arm64": "0.27.3",
9793
- "@esbuild/sunos-x64": "0.27.3",
9794
- "@esbuild/win32-arm64": "0.27.3",
9795
- "@esbuild/win32-ia32": "0.27.3",
9796
- "@esbuild/win32-x64": "0.27.3"
9797
- }
9798
- },
9799
9047
  "node_modules/tweetnacl": {
9800
9048
  "version": "1.0.3",
9801
9049
  "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
@@ -10112,13 +9360,6 @@
10112
9360
  "url": "https://github.com/sponsors/ljharb"
10113
9361
  }
10114
9362
  },
10115
- "node_modules/undefsafe": {
10116
- "version": "2.0.5",
10117
- "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
10118
- "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
10119
- "dev": true,
10120
- "license": "MIT"
10121
- },
10122
9363
  "node_modules/undici": {
10123
9364
  "version": "6.14.1",
10124
9365
  "resolved": "https://registry.npmjs.org/undici/-/undici-6.14.1.tgz",
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@nosana/node",
3
- "version": "1.1.5-rc",
3
+ "version": "1.1.6-rc",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "nosana-node": "./dist/src/index.js"
7
7
  },
8
8
  "type": "module",
9
9
  "scripts": {
10
- "dev:start": "./docker-run.sh start --docker /var/run/docker.sock",
11
- "dev:run": "./docker-run.sh run --docker /var/run/docker.sock",
10
+ "dev": "APP_ENV=development node --no-warnings --loader ts-node/esm src/index.ts",
12
11
  "build": "npm run prepare && tsc && cp .env ./dist/ && cp .env.prd ./dist/ && cp .env.dev ./dist/",
13
12
  "generate": "openapi-typescript http://dashboard.k8s.prd.nos.ci/api/swagger/json -o ./src/NodeManager/client/schema.d.ts",
14
13
  "test": "APP_ENV=development DOCKER_CERT_PATH= vitest run",
@@ -58,7 +57,6 @@
58
57
  "eslint-plugin-prettier": "^4.2.1",
59
58
  "eslint-plugin-promise": "^6.0.0",
60
59
  "husky": "^9.1.7",
61
- "nodemon": "^3.0.2",
62
60
  "prettier": "^2.8.8",
63
61
  "ts-node": "^10.9.2",
64
62
  "typescript": "^5.3.2",