@v1nt1248/3nclient-lib 0.0.1 → 0.0.3

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
@@ -3,8 +3,8 @@
3
3
  "private": false,
4
4
  "license": "AGPL-3.0-or-later",
5
5
  "author": "v1nt1248",
6
- "version": "0.0.1",
7
- "description": "UI library for 3NWeb clients",
6
+ "version": "0.0.3",
7
+ "description": "Library for 3NWeb clients",
8
8
  "type": "module",
9
9
  "files": [
10
10
  "dist"
@@ -23,15 +23,46 @@
23
23
  "dev": "vite",
24
24
  "generate:types": "vue-tsc --declaration --emitDeclarationOnly --outdir ./dist",
25
25
  "build": "vite build && yarn generate:types",
26
- "preview": "vite preview"
26
+ "preview": "vite preview",
27
+ "stylelint": "stylelint --config .stylelint.config.cjs 'src/**/*.{vue,scss}'",
28
+ "stylelint:fix": "stylelint --config .stylelint.config.cjs --fix 'src/**/*.{vue,scss}'",
29
+ "linter": "eslint -c .eslintrc.cjs --ext .js,.vue,.ts, src",
30
+ "linter:fix": "eslint -c .eslintrc.cjs --fix --ext .js,.vue,.ts, src",
31
+ "lint": "yarn linter && yarn stylelint",
32
+ "lint:fix": "yarn linter:fix && yarn stylelint:fix"
27
33
  },
28
34
  "dependencies": {
35
+ "@iconify-icons/ic": "^1.2.13",
36
+ "@iconify/vue": "^4.1.1",
37
+ "dayjs": "^1.11.9",
38
+ "lodash": "^4.17.21",
39
+ "mitt": "^3.0.1",
40
+ "sanitize-html": "^2.11.0",
29
41
  "vue": "^3.3.4"
30
42
  },
31
43
  "devDependencies": {
44
+ "@types/lodash": "^4.14.197",
32
45
  "@types/node": "^20.5.6",
46
+ "@types/sanitize-html": "^2.9.0",
47
+ "@typescript-eslint/eslint-plugin": "^6.4.1",
48
+ "@typescript-eslint/parser": "^6.4.1",
33
49
  "@vitejs/plugin-vue": "^4.2.3",
50
+ "@vue/eslint-config-typescript": "^11.0.3",
51
+ "@vuedx/typescript-plugin-vue": "^0.7.6",
52
+ "eslint": "^8.48.0",
53
+ "eslint-plugin-import": "^2.28.1",
54
+ "eslint-plugin-node": "^11.1.0",
55
+ "eslint-plugin-promise": "^6.1.1",
56
+ "eslint-plugin-vue": "^9.17.0",
57
+ "pinia": "^2.1.6",
58
+ "postcss-html": "^1.5.0",
34
59
  "sass": "^1.66.1",
60
+ "stylelint": "^15.10.3",
61
+ "stylelint-config-recommended-scss": "^12.0.0",
62
+ "stylelint-config-recommended-vue": "^1.5.0",
63
+ "stylelint-config-standard": "^34.0.0",
64
+ "stylelint-rscss": "^0.4.0",
65
+ "stylelint-scss": "^5.1.0",
35
66
  "typescript": "^5.2.2",
36
67
  "vite": "^4.4.5",
37
68
  "vue-tsc": "^1.8.5"