@feedmepos/mf-media 0.0.1-dev
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/dist/AssetLibrary-d5c46d3e.js +3752 -0
- package/dist/app.js +1988 -0
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/Entry.vue.d.ts +2 -0
- package/dist/src/app.d.ts +167 -0
- package/dist/src/components/Navigator.vue.d.ts +2 -0
- package/dist/src/main.d.ts +2 -0
- package/dist/src/router/index.d.ts +2 -0
- package/dist/src/router/shared.d.ts +2 -0
- package/dist/src/views/AssetLibrary.vue.d.ts +2 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@feedmepos/mf-media",
|
|
3
|
+
"version": "0.0.1-dev",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"module": "./dist/app.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/apps/media-portal/src/app.d.ts",
|
|
12
|
+
"import": "./dist/app.js"
|
|
13
|
+
},
|
|
14
|
+
"./style.css": "./dist/style.css"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "dotenv -e .env.development -- vite --port 5190",
|
|
18
|
+
"build": "run-p type-check \"build-only {@}\" --",
|
|
19
|
+
"preview": "vite preview",
|
|
20
|
+
"build:dts": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir ./dist",
|
|
21
|
+
"build:mf": "vite build --mode fmmf",
|
|
22
|
+
"build-only": "pnpm build:mf && pnpm build:dts",
|
|
23
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
|
24
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
25
|
+
"format": "prettier --write src/",
|
|
26
|
+
"publish-npm": "npm publish --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/",
|
|
27
|
+
"publish-npm:beta": "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/",
|
|
28
|
+
"publish-github": "npm publish --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/",
|
|
29
|
+
"publish-github:beta": "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@feedmepos/auth": "^1.3.1",
|
|
33
|
+
"@feedmepos/core": "^2.15.33",
|
|
34
|
+
"@feedmepos/hrm-permission": "^1.0.16",
|
|
35
|
+
"@feedmepos/media-picker": "workspace:^",
|
|
36
|
+
"@feedmepos/mf-common": "^1.29.23",
|
|
37
|
+
"@feedmepos/ui-library": "^1.10.10",
|
|
38
|
+
"pinia": "^2.1.7",
|
|
39
|
+
"vue": "^3.5.16",
|
|
40
|
+
"vue-i18n": "10.0.5",
|
|
41
|
+
"vue-router": "^4.2.5"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@rushstack/eslint-patch": "^1.3.3",
|
|
45
|
+
"@tsconfig/node18": "^18.2.2",
|
|
46
|
+
"@types/node": "^18.18.5",
|
|
47
|
+
"@vitejs/plugin-vue": "^4.4.0",
|
|
48
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
49
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
50
|
+
"@vue/tsconfig": "^0.4.0",
|
|
51
|
+
"autoprefixer": "^10.4.16",
|
|
52
|
+
"dotenv": "^16.4.5",
|
|
53
|
+
"dotenv-cli": "^7.4.2",
|
|
54
|
+
"eslint": "^8.49.0",
|
|
55
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
56
|
+
"npm-run-all2": "^6.1.1",
|
|
57
|
+
"postcss": "^8.4.31",
|
|
58
|
+
"prettier": "^3.0.3",
|
|
59
|
+
"tailwindcss": "^3.3.3",
|
|
60
|
+
"typescript": "~5.2.0",
|
|
61
|
+
"vite": "^4.4.11",
|
|
62
|
+
"vue-tsc": "^1.8.19"
|
|
63
|
+
}
|
|
64
|
+
}
|