@feedmepos/mf-remy-panel 0.0.1

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/README.md +18 -0
  2. package/package.json +57 -0
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @feedmepos/mf-remy-panel
2
+
3
+ #
4
+ mf-remy-panel
5
+
6
+ This project was scaffolded using [create-mf-app]. It includes Vue 3, Vite, TypeScript, Vue Router,
7
+ Pinia, Feedme UI Library, and Tailwind CSS. ## Project Setup To get started
8
+ with the project, run the following commands: ```sh
9
+ pnpm
10
+ install ``` ### Compile and Hot-Reload for Development ```sh
11
+ pnpm
12
+ dev ``` ### Type-Check, Compile and Minify for
13
+ Production ```sh
14
+ pnpm
15
+ build ``` ### Lint with [ESLint](https://eslint.org/)
16
+ ```sh
17
+ pnpm
18
+ lint ```
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@feedmepos/mf-remy-panel",
3
+ "version": "0.0.1",
4
+ "files": [
5
+ "dist"
6
+ ],
7
+ "type": "module",
8
+ "module": "./dist/app.js",
9
+ "license": "UNLICENSED",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/app.js"
13
+ }
14
+ },
15
+ "dependencies": {
16
+ "@feedmepos/mf-common": "^1.28.1",
17
+ "@feedmepos/ui-library": "^1.3.0-beta.1",
18
+ "dompurify": "^3.0.8",
19
+ "highlight.js": "^11.9.0",
20
+ "marked": "^11.1.1",
21
+ "pinia": "^2.1.7",
22
+ "vue": "^3.3.8",
23
+ "vue-router": "^4.2.5",
24
+ "@feedmepos/remy-core": "1.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@rushstack/eslint-patch": "^1.3.3",
28
+ "@tsconfig/node18": "^18.2.2",
29
+ "@types/node": "^18.17.17",
30
+ "@vitejs/plugin-vue": "^4.3.4",
31
+ "@vue/eslint-config-prettier": "^8.0.0",
32
+ "@vue/eslint-config-typescript": "^12.0.0",
33
+ "@vue/tsconfig": "^0.4.0",
34
+ "autoprefixer": "^10.4.16",
35
+ "eslint": "^8.49.0",
36
+ "eslint-plugin-vue": "^9.17.0",
37
+ "npm-run-all2": "^6.0.6",
38
+ "postcss": "^8.4.31",
39
+ "prettier": "^3.0.3",
40
+ "tailwindcss": "^3.3.3",
41
+ "typescript": "~5.2.0",
42
+ "vite": "^4.4.9",
43
+ "vue-tsc": "^1.8.11",
44
+ "vue-i18n": "10.0.5"
45
+ },
46
+ "scripts": {
47
+ "dev": "vite",
48
+ "build": "run-p type-check \"build-only {@}\" --",
49
+ "build:mf": "vite build --mode fmmf",
50
+ "build:dts": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir ./dist && mv ./dist/src/* dist",
51
+ "publish-npm": "pnpm build && pnpm publish --no-git-checks",
52
+ "build-only": "pnpm build:mf && pnpm build:dts",
53
+ "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
54
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
55
+ "format": "prettier --write src/"
56
+ }
57
+ }