@rebilly/instruments 4.8.2 → 4.9.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebilly/instruments",
3
- "version": "4.8.2",
3
+ "version": "4.9.0",
4
4
  "author": "Rebilly",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -10,59 +10,52 @@
10
10
  "CHANGELOG.md"
11
11
  ],
12
12
  "scripts": {
13
- "build": "yarn rollup -c --environment NODE_ENV:production",
14
- "dev": "yarn rollup -c --watch --environment NODE_ENV:development",
13
+ "build": "concurrently yarn:type:check \"vite build\"",
14
+ "dev": "vite",
15
15
  "format": "prettier --write . --config ../.prettierrc --ignore-path ../.prettierignore",
16
16
  "format:check": "prettier --check . --config ../.prettierrc --ignore-path ../.prettierignore",
17
17
  "lint": "yarn format && eslint --ext .ts,.js,.vue --ignore-path ../.eslintignore --config ../.eslintrc.js --fix src",
18
18
  "lint:no-fix": "yarn lint --no-fix",
19
19
  "test:unit": "vitest run",
20
- "test:unit:watch": "vitest"
20
+ "test:unit:watch": "vitest",
21
+ "type:check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
21
22
  },
22
- "dependencies": {
23
- "@babel/cli": "^7.21.5",
24
- "@babel/core": "^7.22.9",
25
- "@babel/preset-env": "^7.22.14",
23
+ "devDependencies": {
26
24
  "@rebilly/api-metadata": "*",
27
25
  "@rebilly/risk-data-collector": "*",
26
+ "@typescript-eslint/eslint-plugin": "^5.59.8",
27
+ "@typescript-eslint/parser": "^5.59.8",
28
28
  "@vue/reactivity": "^3.2.39",
29
29
  "ajv": "^8.12.0",
30
- "eslint": "^8.38.0",
30
+ "axios": "^0.27.2",
31
+ "component-emitter": "^1.3.0",
32
+ "concurrently": "^7.3.0",
33
+ "core-js": "^3.23.3",
31
34
  "eslint-config-prettier": "^8.8.0",
32
35
  "eslint-plugin-no-only-tests": "^2.6.0",
33
36
  "eslint-plugin-prettier": "^4.2.1",
34
37
  "eslint-plugin-vue": "^9.12.0",
38
+ "eslint": "^8.38.0",
39
+ "jsdom": "^21.1.1",
35
40
  "jwt-decode": "^3.1.2",
36
41
  "lodash.camelcase": "^4.3.0",
37
42
  "lodash.clonedeep": "^4.5.0",
38
43
  "lodash.isequal": "^4.5.0",
39
44
  "lodash.kebabcase": "^4.1.1",
40
45
  "lodash.merge": "^4.6.2",
46
+ "msw-when-then": "^1.5.1",
47
+ "msw": "^1.2.1",
41
48
  "popostmate": "2.0.0",
42
49
  "prettier": "^2.8.8",
43
50
  "rebilly-js-sdk": "*",
51
+ "typescript": "4.5.5",
44
52
  "values.js": "^2.0.0",
45
- "vue-eslint-parser": "^9.3.1"
46
- },
47
- "devDependencies": {
48
- "@rollup/plugin-babel": "^6.0.3",
49
- "@rollup/plugin-commonjs": "^15.0.0",
50
- "@rollup/plugin-json": "^4.1.0",
51
- "@rollup/plugin-node-resolve": "^15.0.1",
52
- "@rollup/plugin-replace": "^5.0.2",
53
- "axios": "^0.27.2",
54
- "babel-plugin-module-resolver": "^5.0.0",
55
- "component-emitter": "^1.3.0",
56
- "core-js": "^3.23.3",
57
- "jsdom": "^21.1.1",
58
- "msw": "^1.2.1",
59
- "msw-when-then": "^1.5.1",
60
- "rollup": "^2.78.0",
61
- "rollup-plugin-ignore": "^1.0.10",
62
- "rollup-plugin-polyfill-node": "^0.12.0",
63
- "rollup-plugin-terser": "^7.0.2",
64
- "rollup-plugin-version-injector": "^1.3.3",
53
+ "vite-plugin-commonjs": "0.9.0",
54
+ "vite-plugin-package-version": "^1.0.2",
55
+ "vite-plugin-replace": "^0.1.1",
56
+ "vite": "^4.4.2",
57
+ "vitest-canvas-mock": "^0.2.2",
65
58
  "vitest": "^0.29.7",
66
- "vitest-canvas-mock": "^0.2.2"
59
+ "vue-eslint-parser": "^9.3.1"
67
60
  }
68
61
  }