tsv2-library 0.3.13 → 0.3.14

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.
Files changed (2) hide show
  1. package/dist/tsv2-library.es.js +13 -13
  2. package/package.json +139 -139
package/package.json CHANGED
@@ -1,139 +1,139 @@
1
- {
2
- "name": "tsv2-library",
3
- "version": "0.3.13",
4
- "author": "fixedassetv2-fe",
5
- "license": "ISC",
6
- "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/fixedassetv2-fe/tsv2-library.git"
10
- },
11
- "bugs": {
12
- "url": "https://github.com/fixedassetv2-fe/tsv2-library/issues"
13
- },
14
- "type": "module",
15
- "files": [
16
- "dist",
17
- "src/presets",
18
- "src/presets/dialog",
19
- "src/colors.config.json",
20
- "src/services",
21
- "src/assets/locales",
22
- "src/assets/currencies.json",
23
- "src/**/*.d.ts"
24
- ],
25
- "scripts": {
26
- "dev": "vite",
27
- "build": "rimraf dist && vue-tsc && vite build",
28
- "build:dev": "vue-tsc && vite build --watch",
29
- "build:pub": "npm run build && npm link && npm publish",
30
- "preview": "vite preview",
31
- "lint": "eslint . --ext .vue,.js,.ts --fix --ignore-path .gitignore",
32
- "tailwind": "tailwind -i ./src/assets/css/main.css -o ./cypress/support/tailwind.css",
33
- "cy:run-ct": "npm run tailwind && cypress run --component",
34
- "cy:open-ct": "npm run tailwind && cypress open --component",
35
- "cy:run-e2e": "npm run tailwind && cypress run",
36
- "cy:open-e2e": "npm run tailwind && cypress open",
37
- "cy:test-all": "npm run tailwind && start-server-and-test dev cy:run-e2e && npm run cy:run-ct"
38
- },
39
- "dependencies": {
40
- "@vueuse/core": "10.11.0",
41
- "axios": "1.7.3",
42
- "base64toblob": "0.0.2",
43
- "debounce": "2.1.0",
44
- "idb": "8.0.0",
45
- "primeicons": "6.0.1",
46
- "primevue": "3.53.0",
47
- "qrcode": "1.5.3",
48
- "single-spa": "6.0.1",
49
- "vee-validate": "4.13.2",
50
- "vue": "3.4.21",
51
- "vue-advanced-cropper": "2.8.9",
52
- "vue-i18n": "9.13.1",
53
- "vue-router": "4.4.2",
54
- "vuex": "4.1.0",
55
- "xlsx": "0.18.5"
56
- },
57
- "devDependencies": {
58
- "@cypress/code-coverage": "3.12.44",
59
- "@cypress/vue": "6.0.1",
60
- "@faker-js/faker": "8.4.1",
61
- "@tsconfig/node18": "18.2.4",
62
- "@types/mocha": "10.0.7",
63
- "@types/node": "18.14.2",
64
- "@types/uuid": "9.0.8",
65
- "@typescript-eslint/eslint-plugin": "5.54.0",
66
- "@typescript-eslint/parser": "5.54.0",
67
- "@vitejs/plugin-vue": "4.0.0",
68
- "@vue/eslint-config-typescript": "12.0.0",
69
- "@vue/test-utils": "2.4.6",
70
- "@vue/tsconfig": "0.5.1",
71
- "autoprefixer": "10.4.17",
72
- "concurrently": "8.2.2",
73
- "cypress": "13.13.1",
74
- "cypress-real-events": "1.13.0",
75
- "eslint": "8.35.0",
76
- "eslint-config-ts-code-standard": "1.0.9",
77
- "eslint-plugin-css": "0.9.2",
78
- "eslint-plugin-cypress": "2.15.2",
79
- "eslint-plugin-prettier": "5.2.1",
80
- "eslint-plugin-promise": "6.6.0",
81
- "eslint-plugin-vue": "9.19.2",
82
- "faker-js": "1.0.0",
83
- "highlight.js": "11.10.0",
84
- "istanbul-lib-coverage": "3.2.2",
85
- "miragejs": "0.1.48",
86
- "nyc": "15.1.0",
87
- "postcss": "8.4.34",
88
- "postcss-nested": "6.2.0",
89
- "prettier": "3.3.3",
90
- "rimraf": "5.0.10",
91
- "rollup-plugin-typescript2": "0.34.1",
92
- "start-server-and-test": "2.0.5",
93
- "tailwindcss": "3.4.1",
94
- "ts-node": "10.9.2",
95
- "typescript": "5.1.6",
96
- "uuid": "9.0.1",
97
- "vite": "4.5.3",
98
- "vite-plugin-dts": "2.3.0",
99
- "vite-plugin-istanbul": "5.0.0",
100
- "vite-plugin-top-level-await": "^1.4.2",
101
- "vue-tsc": "^2.0.19",
102
- "wait-on": "7.2.0"
103
- },
104
- "description": "Global reusable components for micro frontend",
105
- "main": "./dist/tsv2-library.umd.js",
106
- "module": "./dist/tsv2-library.es.js",
107
- "exports": {
108
- ".": {
109
- "types": "./dist/main.d.ts",
110
- "import": "./dist/tsv2-library.es.js",
111
- "require": "./dist/tsv2-library.umd.js"
112
- },
113
- "./dist/style.css": {
114
- "import": "./dist/style.css",
115
- "require": "./dist/style.css"
116
- },
117
- "./src/presets": {
118
- "import": "./src/presets",
119
- "require": "./src/presets"
120
- },
121
- "./src/presets/index.js": {
122
- "import": "./src/presets/index.js",
123
- "require": "./src/presets/index.js"
124
- },
125
- "./src/presets/dialog": {
126
- "import": "./src/presets",
127
- "require": "./src/presets"
128
- },
129
- "./src/presets/dialog/index.js": {
130
- "import": "./src/presets/index.js",
131
- "require": "./src/presets/index.js"
132
- },
133
- "./src/colors.config.json": {
134
- "import": "./src/colors.config.json",
135
- "require": "./src/colors.config.json"
136
- }
137
- },
138
- "types": "./dist/main.d.ts"
139
- }
1
+ {
2
+ "name": "tsv2-library",
3
+ "version": "0.3.14",
4
+ "author": "fixedassetv2-fe",
5
+ "license": "ISC",
6
+ "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/fixedassetv2-fe/tsv2-library.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/fixedassetv2-fe/tsv2-library/issues"
13
+ },
14
+ "type": "module",
15
+ "files": [
16
+ "dist",
17
+ "src/presets",
18
+ "src/presets/dialog",
19
+ "src/colors.config.json",
20
+ "src/services",
21
+ "src/assets/locales",
22
+ "src/assets/currencies.json",
23
+ "src/**/*.d.ts"
24
+ ],
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "build": "rimraf dist && vue-tsc && vite build",
28
+ "build:dev": "vue-tsc && vite build --watch",
29
+ "build:pub": "npm run build && npm link && npm publish",
30
+ "preview": "vite preview",
31
+ "lint": "eslint . --ext .vue,.js,.ts --fix --ignore-path .gitignore",
32
+ "tailwind": "tailwind -i ./src/assets/css/main.css -o ./cypress/support/tailwind.css",
33
+ "cy:run-ct": "npm run tailwind && cypress run --component",
34
+ "cy:open-ct": "npm run tailwind && cypress open --component",
35
+ "cy:run-e2e": "npm run tailwind && cypress run",
36
+ "cy:open-e2e": "npm run tailwind && cypress open",
37
+ "cy:test-all": "npm run tailwind && start-server-and-test dev cy:run-e2e && npm run cy:run-ct"
38
+ },
39
+ "dependencies": {
40
+ "@vueuse/core": "10.11.0",
41
+ "axios": "1.7.3",
42
+ "base64toblob": "0.0.2",
43
+ "debounce": "2.1.0",
44
+ "idb": "8.0.0",
45
+ "primeicons": "6.0.1",
46
+ "primevue": "3.52.0",
47
+ "qrcode": "1.5.3",
48
+ "single-spa": "6.0.1",
49
+ "vee-validate": "4.13.2",
50
+ "vue": "3.4.21",
51
+ "vue-advanced-cropper": "2.8.9",
52
+ "vue-i18n": "9.13.1",
53
+ "vue-router": "4.4.2",
54
+ "vuex": "4.1.0",
55
+ "xlsx": "0.18.5"
56
+ },
57
+ "devDependencies": {
58
+ "@cypress/code-coverage": "3.12.44",
59
+ "@cypress/vue": "6.0.1",
60
+ "@faker-js/faker": "8.4.1",
61
+ "@tsconfig/node18": "18.2.4",
62
+ "@types/mocha": "10.0.7",
63
+ "@types/node": "18.14.2",
64
+ "@types/uuid": "9.0.8",
65
+ "@typescript-eslint/eslint-plugin": "5.54.0",
66
+ "@typescript-eslint/parser": "5.54.0",
67
+ "@vitejs/plugin-vue": "4.0.0",
68
+ "@vue/eslint-config-typescript": "12.0.0",
69
+ "@vue/test-utils": "2.4.6",
70
+ "@vue/tsconfig": "0.5.1",
71
+ "autoprefixer": "10.4.17",
72
+ "concurrently": "8.2.2",
73
+ "cypress": "13.13.1",
74
+ "cypress-real-events": "1.13.0",
75
+ "eslint": "8.35.0",
76
+ "eslint-config-ts-code-standard": "1.0.9",
77
+ "eslint-plugin-css": "0.9.2",
78
+ "eslint-plugin-cypress": "2.15.2",
79
+ "eslint-plugin-prettier": "5.2.1",
80
+ "eslint-plugin-promise": "6.6.0",
81
+ "eslint-plugin-vue": "9.19.2",
82
+ "faker-js": "1.0.0",
83
+ "highlight.js": "11.10.0",
84
+ "istanbul-lib-coverage": "3.2.2",
85
+ "miragejs": "0.1.48",
86
+ "nyc": "15.1.0",
87
+ "postcss": "8.4.34",
88
+ "postcss-nested": "6.2.0",
89
+ "prettier": "3.3.3",
90
+ "rimraf": "5.0.10",
91
+ "rollup-plugin-typescript2": "0.34.1",
92
+ "start-server-and-test": "2.0.5",
93
+ "tailwindcss": "3.4.1",
94
+ "ts-node": "10.9.2",
95
+ "typescript": "5.1.6",
96
+ "uuid": "9.0.1",
97
+ "vite": "4.5.3",
98
+ "vite-plugin-dts": "2.3.0",
99
+ "vite-plugin-istanbul": "5.0.0",
100
+ "vite-plugin-top-level-await": "^1.4.2",
101
+ "vue-tsc": "^2.0.19",
102
+ "wait-on": "7.2.0"
103
+ },
104
+ "description": "Global reusable components for micro frontend",
105
+ "main": "./dist/tsv2-library.umd.js",
106
+ "module": "./dist/tsv2-library.es.js",
107
+ "exports": {
108
+ ".": {
109
+ "types": "./dist/main.d.ts",
110
+ "import": "./dist/tsv2-library.es.js",
111
+ "require": "./dist/tsv2-library.umd.js"
112
+ },
113
+ "./dist/style.css": {
114
+ "import": "./dist/style.css",
115
+ "require": "./dist/style.css"
116
+ },
117
+ "./src/presets": {
118
+ "import": "./src/presets",
119
+ "require": "./src/presets"
120
+ },
121
+ "./src/presets/index.js": {
122
+ "import": "./src/presets/index.js",
123
+ "require": "./src/presets/index.js"
124
+ },
125
+ "./src/presets/dialog": {
126
+ "import": "./src/presets",
127
+ "require": "./src/presets"
128
+ },
129
+ "./src/presets/dialog/index.js": {
130
+ "import": "./src/presets/index.js",
131
+ "require": "./src/presets/index.js"
132
+ },
133
+ "./src/colors.config.json": {
134
+ "import": "./src/colors.config.json",
135
+ "require": "./src/colors.config.json"
136
+ }
137
+ },
138
+ "types": "./dist/main.d.ts"
139
+ }