x-runtime-lib 0.3.6 → 0.3.8

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.
@@ -1,4 +1,3 @@
1
- /// <reference path="../../../src/global.d.ts" />
2
1
  import Interpreter from 'js-interpreter';
3
2
  declare function bindBase(interpreter: Interpreter, globalObject: Object): void;
4
3
  export default bindBase;
@@ -1,4 +1,3 @@
1
- /// <reference path="../../../src/global.d.ts" />
2
1
  import Interpreter from 'js-interpreter';
3
2
  import { SandboxContext } from '../../types';
4
3
  declare function bind(context: SandboxContext, interpreter: Interpreter, globalObject: Object): void;
@@ -1,4 +1,3 @@
1
- /// <reference path="../../../src/global.d.ts" />
2
1
  import Interpreter from 'js-interpreter';
3
2
  import { SandboxContext } from '../../types';
4
3
  declare function bindView(context: SandboxContext, interpreter: Interpreter, globalObject: Object): void;
@@ -1,4 +1,3 @@
1
- /// <reference path="../../src/global.d.ts" />
2
1
  import Interpreter from 'js-interpreter';
3
2
  import { SandboxContext } from '../types';
4
3
  export declare function startInterpreter(context: SandboxContext, code: string): Interpreter;
@@ -1,4 +1,3 @@
1
- /// <reference path="../../src/global.d.ts" />
2
1
  import { Ref } from 'vue';
3
2
  import { Env, Mode, Type, Data, Depends } from '../types';
4
3
  import Interpreter from 'js-interpreter';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.3.6",
4
+ "version": "0.3.8",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -24,31 +24,31 @@
24
24
  "dependencies": {
25
25
  "js-interpreter": "^5.1.2",
26
26
  "lodash-es": "^4.17.21",
27
- "x-essential-lib": "^0.5.66"
27
+ "x-essential-lib": "^0.6.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "vue": "^3.4.30",
30
+ "vue": "^3.4.31",
31
31
  "vue-i18n": "^9.13.1",
32
- "vuetify": "^3.6.10"
32
+ "vuetify": "^3.6.12"
33
33
  },
34
34
  "devDependencies": {
35
- "@rushstack/eslint-patch": "^1.8.0",
35
+ "@rushstack/eslint-patch": "^1.10.3",
36
36
  "@types/lodash-es": "^4.17.12",
37
- "@types/node": "^20.12.7",
38
- "@vitejs/plugin-vue": "^5.0.4",
37
+ "@types/node": "^20.14.10",
38
+ "@vitejs/plugin-vue": "^5.0.5",
39
39
  "@vue/eslint-config-prettier": "^9.0.0",
40
40
  "@vue/eslint-config-typescript": "^13.0.0",
41
41
  "eslint": "^8.57.0",
42
- "eslint-plugin-vue": "^9.24.1",
42
+ "eslint-plugin-vue": "^9.27.0",
43
43
  "husky": "^9.0.11",
44
- "lint-staged": "^15.2.2",
45
- "prettier": "3.2.5",
46
- "sass": "^1.74.1",
47
- "typescript": "^5.2.2",
48
- "vite": "^5.2.0",
49
- "vite-plugin-css-injected-by-js": "^3.5.0",
44
+ "lint-staged": "^15.2.7",
45
+ "prettier": "3.3.2",
46
+ "sass": "^1.77.7",
47
+ "typescript": "^5.5.3",
48
+ "vite": "^5.3.3",
49
+ "vite-plugin-css-injected-by-js": "^3.5.1",
50
50
  "vite-plugin-vuetify": "^2.0.3",
51
51
  "vue-router": "^4.4.0",
52
- "vue-tsc": "^2.0.6"
52
+ "vue-tsc": "^2.0.26"
53
53
  }
54
54
  }