expedite-components 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.
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "expedite-components",
3
+ "private": false,
4
+ "version": "0.0.1",
5
+ "type": "module",
6
+ "description": "Vue 3 components library for Expedite",
7
+ "main": "./dist/expedite-components.cjs.js",
8
+ "module": "./dist/expedite-components.es.js",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/expedite-components.es.js",
12
+ "require": "./dist/expedite-components.cjs.js"
13
+ },
14
+ "./style": "./dist/expedite-components.css"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "vue",
22
+ "vue3",
23
+ "components",
24
+ "configurator",
25
+ "gpt"
26
+ ],
27
+ "scripts": {
28
+ "prebuild": "node pre-build.js",
29
+ "postbuild": "node post-build.js",
30
+ "dev": "vite",
31
+ "build": "vite build",
32
+ "build:web-components": "vite build --config vite.webcomponents.config.js",
33
+ "build:all": "npm run build && npm run build:web-components",
34
+ "preview": "vite preview",
35
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
36
+ "format": "prettier --write src/",
37
+ "sfpush": "cd $SF_PROJECT_PATH && sf project deploy start --metadata StaticResource:$SF_RESOURCE_NAME --target-org $SF_ORG_ALIAS",
38
+ "sfpushw": "cd %SF_PROJECT_PATH% && sf project deploy start --metadata StaticResource:$SF_RESOURCE_NAME --target-org %SF_ORG_ALIAS%",
39
+ "_deploy": "npm run build && npm run sfpush",
40
+ "_deployw": "npm run build && npm run sfpushw",
41
+ "deploy": "dotenv -- npm run _deploy",
42
+ "deployw": "dotenv -- npm run _deployw",
43
+ "prepare": "husky"
44
+ },
45
+ "lint-staged": {
46
+ "*.{vue,js,jsx,cjs,mjs}": [
47
+ "eslint --fix",
48
+ "prettier --write"
49
+ ],
50
+ "*.{css,scss,html,md,json}": [
51
+ "prettier --write"
52
+ ]
53
+ },
54
+ "dependencies": {
55
+ "@vueup/vue-quill": "^1.2.0",
56
+ "axios": "^1.13.2",
57
+ "dompurify": "^3.2.6",
58
+ "lodash.clonedeep": "^4.5.0",
59
+ "pinia": "^2.1.7",
60
+ "v-click-outside": "^3.2.0",
61
+ "vue": "^3.4.21",
62
+ "vue-router-lwc": "^1.0.4",
63
+ "vuedraggable": "^4.1.0"
64
+ },
65
+ "devDependencies": {
66
+ "@rushstack/eslint-patch": "^1.8.0",
67
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
68
+ "@vitejs/plugin-vue": "^5.0.4",
69
+ "@vue/eslint-config-prettier": "^9.0.0",
70
+ "@vue/test-utils": "^2.4.5",
71
+ "autoprefixer": "^10.4.19",
72
+ "dotenv": "^16.4.5",
73
+ "dotenv-cli": "^7.4.2",
74
+ "eslint": "^8.57.0",
75
+ "eslint-plugin-vue": "^9.23.0",
76
+ "husky": "^9.1.7",
77
+ "jsdom": "^24.0.0",
78
+ "lint-staged": "^15.5.1",
79
+ "postcss": "^8.4.38",
80
+ "prettier": "^3.2.5",
81
+ "sass": "^1.74.1",
82
+ "tailwindcss": "^3.4.3",
83
+ "vite": "^5.2.8",
84
+ "vite-plugin-vue-devtools": "^7.0.25",
85
+ "vite-plugin-zip-pack": "^1.2.3",
86
+ "vitest": "^1.4.0"
87
+ },
88
+ "peerDependencies": {
89
+ "vue": "^3.4.21",
90
+ "pinia": "^2.1.7",
91
+ "axios": "^1.13.2",
92
+ "dompurify": "^3.2.6",
93
+ "lodash.clonedeep": "^4.5.0",
94
+ "v-click-outside": "^3.2.0",
95
+ "vue-router-lwc": "^1.0.4",
96
+ "vuedraggable": "^4.1.0"
97
+ },
98
+ "author": "",
99
+ "license": "MIT"
100
+ }