@anzusystems/common-admin 1.47.0-beta.36 → 1.47.0-beta.360

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,22 +1,33 @@
1
1
  {
2
2
  "name": "@anzusystems/common-admin",
3
- "packageManager": "yarn@4.4.0",
3
+ "packageManager": "yarn@4.14.1",
4
4
  "files": [
5
- "dist"
5
+ "dist",
6
+ "src/eslint"
6
7
  ],
7
8
  "module": "./dist/common-admin.es.js",
8
- "types": "./dist/common-admin.es.d.ts",
9
+ "types": "./dist/common-admin.d.ts",
9
10
  "exports": {
10
11
  ".": {
11
- "import": "./dist/common-admin.es.js"
12
+ "import": "./dist/common-admin.js",
13
+ "types": "./dist/common-admin.d.ts"
12
14
  },
13
- "./styles": "./dist/style.css",
15
+ "./styles": "./dist/common-admin.css",
16
+ "./labs": {
17
+ "import": "./dist/labs.js",
18
+ "types": "./dist/labs.d.ts"
19
+ },
20
+ "./eslint": "./src/eslint/plugin.mjs",
14
21
  "./*": "./*"
15
22
  },
16
- "version": "1.47.0-beta.36",
17
- "type": "module",
23
+ "version": "1.47.0-beta.360",
18
24
  "license": "Apache-2.0",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/anzusystems/common-admin.git"
28
+ },
19
29
  "scripts": {
30
+ "prepare": "node -e \"if (process.env.SKIP_PLAYWRIGHT_INSTALL !== 'true') { require('child_process').execSync('playwright install chromium --with-deps', { stdio: 'inherit' }) }\"",
20
31
  "docs:dev": "vitepress dev docs",
21
32
  "docs:build-only": "vitepress build docs",
22
33
  "docs:build": "yarn build ; yarn docs:build-only",
@@ -27,85 +38,106 @@
27
38
  "build": "vite build --config vite.config.lib.ts",
28
39
  "build:dev": "vite build --minify false --sourcemap true --config vite.config.lib.ts",
29
40
  "lib:build": "vite build --config vite.config.lib.ts",
30
- "ci": "run-s --print-name lint:tsc lint:eslint lint:stylelint",
31
- "lint": "yarn ci",
32
- "lint:tsc": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
33
- "lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
34
- "lint:eslint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
41
+ "ci": "run-s --print-name lint:tsc lint:oxlint lint:eslint lint:stylelint",
42
+ "lint": "[ \"$*\" = \"--fix\" ] && yarn lint:fix || yarn ci",
43
+ "lint:fix": "run-s --print-name lint:tsc format lint:oxlint:fix lint:eslint:fix lint:stylelint:fix",
44
+ "lint:tsc": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc --build",
45
+ "lint:tsc:test": "NODE_OPTIONS=--max-old-space-size=4096 tsc --build tsconfig.test.json",
46
+ "lint:eslint": "eslint",
47
+ "lint:eslint:fix": "eslint --fix",
48
+ "lint:oxlint": "oxlint .",
49
+ "lint:oxlint:fix": "oxlint . --fix",
35
50
  "lint:stylelint": "stylelint src/**/*.{scss,vue}",
36
51
  "lint:stylelint:fix": "stylelint src/**/*.{scss,vue} --fix",
37
- "lint:prettier": "prettier -c \"src/**/*.{ts,vue}\"",
38
- "lint:prettier:fix": "prettier -w \"src/**/*.{ts,vue}\"",
39
- "test": "exit 0"
52
+ "format": "oxfmt src/",
53
+ "format:check": "oxfmt src/ --check",
54
+ "test": "vitest",
55
+ "test:run": "vitest run",
56
+ "test:ui": "vitest --ui"
40
57
  },
41
58
  "devDependencies": {
42
59
  "@anzusystems/common-admin": "workspace:*",
43
- "@intlify/unplugin-vue-i18n": "^4.0.0",
44
- "@kyvg/vue3-notification": "^3.2.1",
60
+ "@intlify/unplugin-vue-i18n": "^11.1.2",
61
+ "@kyvg/vue3-notification": "^3.4.2",
45
62
  "@mdi/font": "^7.4.47",
46
- "@rushstack/eslint-patch": "^1.10.4",
47
- "@shikijs/vitepress-twoslash": "^1.14.1",
48
- "@stylistic/eslint-plugin": "^2.6.4",
49
- "@tsconfig/node18": "^18.2.4",
50
- "@types/node": "^20.16.1",
63
+ "@sentry/vue": "^10.50.0",
64
+ "@shikijs/vitepress-twoslash": "^4.0.2",
65
+ "@stylistic/eslint-plugin": "^5.10.0",
66
+ "@tsconfig/node22": "^22.0.5",
67
+ "@types/node": "^24.12.2",
51
68
  "@types/rusha": "^0.8.3",
52
- "@types/sortablejs": "^1.15.8",
69
+ "@types/sortablejs": "^1.15.9",
53
70
  "@types/webfontloader": "^1.6.38",
54
- "@typescript-eslint/parser": "^8.2.0",
55
- "@vitejs/plugin-vue": "^5.1.2",
56
- "@vue/eslint-config-prettier": "^9.0.0",
57
- "@vue/eslint-config-typescript": "^13.0.0",
58
- "@vue/tsconfig": "^0.5.1",
71
+ "@vitejs/plugin-vue": "^6.0.6",
72
+ "@vitest/browser": "^4.1.5",
73
+ "@vitest/browser-playwright": "^4.1.5",
74
+ "@vitest/ui": "^4.1.5",
75
+ "@vue/eslint-config-typescript": "^14.7.0",
76
+ "@vue/language-server": "3.2.7",
77
+ "@vue/test-utils": "^2.4.9",
78
+ "@vue/tsconfig": "0.9.1",
59
79
  "@vuelidate/core": "^2.0.3",
60
80
  "@vuelidate/validators": "^2.0.4",
61
- "@vueuse/core": "^11.0.1",
62
- "@vueuse/integrations": "^11.0.1",
63
- "axios": "1.7.4",
81
+ "@vueuse/core": "^14.2.1",
82
+ "@vueuse/integrations": "^14.2.1",
83
+ "axios": "1.15.2",
64
84
  "cropperjs": "^1.6.2",
65
- "dayjs": "1.11.13",
66
- "eslint": "8.57.0",
67
- "eslint-plugin-vue": "9.27.0",
68
- "npm-run-all": "^4.1.5",
69
- "pinia": "2.2.2",
70
- "postcss": "^8.4.41",
71
- "postcss-html": "^1.7.0",
72
- "postcss-prefix-selector": "^1.16.1",
73
- "prettier": "^3.3.3",
85
+ "dayjs": "1.11.20",
86
+ "eslint": "^10.2.1",
87
+ "eslint-plugin-oxlint": "1.62.0",
88
+ "eslint-plugin-vue": "10.9.0",
89
+ "eslint-plugin-vuetify": "^2.7.2",
90
+ "npm-run-all2": "^8.0.4",
91
+ "oxfmt": "^0.47.0",
92
+ "oxlint": "1.62.0",
93
+ "pinia": "3.0.4",
94
+ "playwright": "^1.59.1",
95
+ "postcss": "^8.5.12",
96
+ "postcss-html": "^1.8.1",
97
+ "postcss-prefix-selector": "^2.1.1",
74
98
  "rusha": "^0.8.14",
75
- "sass": "^1.77.8",
76
- "socket.io-client": "4.7.5",
77
- "sortablejs": "^1.15.2",
78
- "stylelint": "16.8.2",
79
- "stylelint-config-recommended-vue": "^1.5.0",
80
- "stylelint-config-standard-scss": "^13.1.0",
81
- "typescript": "5.5.4",
82
- "uuid": "^10.0.0",
83
- "vite": "5.4.2",
84
- "vite-plugin-dts": "^4.0.3",
85
- "vite-plugin-vuetify": "^2.0.4",
86
- "vitepress": "1.3.3",
87
- "vue": "3.4.38",
88
- "vue-i18n": "9.14.0",
89
- "vue-router": "4.4.3",
90
- "vue-tsc": "2.0.29",
91
- "vuetify": "3.7.0",
99
+ "sass": "1.99.0",
100
+ "socket.io-client": "4.8.3",
101
+ "sortablejs": "^1.15.7",
102
+ "stylelint": "17.9.1",
103
+ "stylelint-config-recommended-vue": "^1.6.1",
104
+ "stylelint-config-standard-scss": "^17.0.0",
105
+ "typescript": "5.9.3",
106
+ "unplugin": "3.0.0",
107
+ "uuid": "^14.0.0",
108
+ "vite": "7.3.2",
109
+ "vite-plugin-dts": "4.5.4",
110
+ "vite-plugin-vuetify": "^2.1.3",
111
+ "vitepress": "1.6.4",
112
+ "vitest": "^4.1.5",
113
+ "vue": "3.5.33",
114
+ "vue-eslint-parser": "^10.4.0",
115
+ "vue-i18n": "11.4.0",
116
+ "vue-router": "5.0.6",
117
+ "vue-tsc": "3.2.7",
118
+ "vuetify": "4.0.6",
92
119
  "webfontloader": "^1.6.28"
93
120
  },
94
121
  "peerDependencies": {
95
- "@vuelidate/core": "2.0.3",
96
- "@vuelidate/validators": "2.0.4",
97
- "@vueuse/core": "11.0.1",
98
- "@vueuse/integrations": "11.0.1",
99
- "axios": "1.7.4",
100
- "dayjs": "1.11.13",
101
- "pinia": "2.2.2",
102
- "socket.io-client": "4.7.5",
103
- "vue": "3.4.38",
104
- "vue-i18n": "9.14.0",
105
- "vue-router": "4.4.3",
106
- "vuetify": "3.7.0"
122
+ "@sentry/vue": "^10.0.0",
123
+ "@vuelidate/core": "^2.0.3",
124
+ "@vuelidate/validators": "^2.0.4",
125
+ "@vueuse/core": "^14.1.0",
126
+ "@vueuse/integrations": "^14.1.0",
127
+ "axios": "^1.13.4",
128
+ "dayjs": "^1.11.19",
129
+ "pinia": "^3.0.4",
130
+ "socket.io-client": "^4.8.3",
131
+ "unplugin": "^3.0.0",
132
+ "vue": "^3.5.27",
133
+ "vue-i18n": "^11.2.8",
134
+ "vue-router": "^5.0.1",
135
+ "vuetify": "^4.0.0"
107
136
  },
108
137
  "peerDependenciesMeta": {
138
+ "@sentry/vue": {
139
+ "optional": true
140
+ },
109
141
  "@vueuse/core": {
110
142
  "optional": true
111
143
  },