@webitel/ui-datalist 1.0.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/CHANGELOG.md +0 -0
- package/package.json +81 -0
package/CHANGELOG.md
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@webitel/ui-datalist",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Toolkit for building data lists in webitel ui system",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"lint:fix": "eslint --fix ./src && prettier --write --check ./src",
|
|
7
|
+
"lint:fix-staged": "npx lint-staged",
|
|
8
|
+
"lint:package": "publint",
|
|
9
|
+
"utils:i": "npm i",
|
|
10
|
+
"utils:publish": "npm publish --access public"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"main": "./src/index.ts",
|
|
14
|
+
"types": "./src/index.d.ts",
|
|
15
|
+
"workspaces": [
|
|
16
|
+
"../../"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": "./src/index.ts"
|
|
21
|
+
},
|
|
22
|
+
"./filters": {
|
|
23
|
+
"import": "./src/filters/index.ts"
|
|
24
|
+
},
|
|
25
|
+
"./presets": {
|
|
26
|
+
"import": "./src/filter-presets/index.ts"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"CHANGELOG.md"
|
|
31
|
+
],
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"vue": "^3.5",
|
|
34
|
+
"axios": "^1",
|
|
35
|
+
"pinia": "^3.x"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@vuelidate/core": "^2.0.3",
|
|
39
|
+
"@vuelidate/validators": "^2.0.4",
|
|
40
|
+
"@webitel/ui-sdk": "^25.4.47"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"vue-tsc": "^2.2.8",
|
|
44
|
+
"vite-plugin-checker": "^0.9.0",
|
|
45
|
+
"sass": "^1.85.1",
|
|
46
|
+
"typescript": "5.8.2",
|
|
47
|
+
"typescript-eslint": "^8.26.1",
|
|
48
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
49
|
+
"unplugin-auto-import": "^19.1.1",
|
|
50
|
+
"publint": "^0.3.9",
|
|
51
|
+
"vite": "^6.2.4",
|
|
52
|
+
"@eslint/js": "^9.22.0",
|
|
53
|
+
"prettier": "^3.5.3",
|
|
54
|
+
"prettier-plugin-css-order": "^2.1.2",
|
|
55
|
+
"@tsconfig/node22": "^22.0.0",
|
|
56
|
+
"@types/node": "^22.13.10",
|
|
57
|
+
"@vue/tsconfig": "^0.7.0",
|
|
58
|
+
"eslint": "^9.22.0",
|
|
59
|
+
"eslint-config-prettier": "^10.1.1",
|
|
60
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
61
|
+
"eslint-plugin-vue": "^10.0.0",
|
|
62
|
+
"globals": "^16.0.0",
|
|
63
|
+
"globby": "^14.1.0",
|
|
64
|
+
"lint-staged": "^15.5.0",
|
|
65
|
+
"@vitejs/plugin-vue": "^5.2.3"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"npm": "10",
|
|
69
|
+
"node": "v22"
|
|
70
|
+
},
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "https://github.com/webitel/webitel-ui-sdk"
|
|
74
|
+
},
|
|
75
|
+
"keywords": [
|
|
76
|
+
"webitel",
|
|
77
|
+
"webitel-ui"
|
|
78
|
+
],
|
|
79
|
+
"author": "webitel",
|
|
80
|
+
"license": "ISC"
|
|
81
|
+
}
|