@dialpad/dialtone-vue 3.21.0 → 3.22.1-beta.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 CHANGED
@@ -1,11 +1,52 @@
1
1
  {
2
2
  "name": "@dialpad/dialtone-vue",
3
- "version": "3.21.0",
4
- "description": "Vue component library for Dialtone components",
3
+ "version": "3.22.1-beta.1",
4
+ "description": "Vue component library for Dialpad's design system Dialtone",
5
+ "keywords": [
6
+ "Dialpad",
7
+ "Dialtone",
8
+ "Dialtone Vue",
9
+ "Design System",
10
+ "Components",
11
+ "Component Library",
12
+ "Vue"
13
+ ],
14
+ "homepage": "https://vue.dialpad.design",
15
+ "bugs": {
16
+ "email": "dialtone@dialpad.com"
17
+ },
18
+ "license": "MIT",
19
+ "contributors": [
20
+ {
21
+ "name": "Brad Paugh",
22
+ "email": "brad.paugh@dialpad.com",
23
+ "url": "https://github.com/braddialpad"
24
+ },
25
+ {
26
+ "name": "Francis Rupert",
27
+ "email": "francis.rupert@dialpad.com",
28
+ "url": "https://github.com/francisrupert"
29
+ },
30
+ {
31
+ "name": "Julio Ortega",
32
+ "email": "julio.ortega@dialpad.com",
33
+ "url": "https://github.com/juliodialpad"
34
+ },
35
+ {
36
+ "name": "Jose Silva",
37
+ "email": "jose.silva@dialpad.com",
38
+ "url": "https://github.com/josedialpad"
39
+ }
40
+ ],
41
+ "files": [
42
+ "dist/*.js",
43
+ "dist/component-documentation.json"
44
+ ],
45
+ "repository": "git@github.com:dialpad/dialtone-vue.git",
5
46
  "scripts": {
6
- "build": "npm run clean && npm run build-main && npm run build-emoji",
7
- "build-main": "vue-cli-service build --target lib --name dialtone-vue --no-clean index.js && npm run build:documentation",
8
- "build-emoji": "vue-cli-service build --target lib --name emoji --no-clean emoji.js && npm run build:documentation",
47
+ "build": "npm run clean && npm run build-main && npm run build-emoji && npm run build:documentation",
48
+ "build-main": "vue-cli-service build --target lib --name dialtone-vue --no-clean index.js",
49
+ "build-emoji": "vue-cli-service build --target lib --name emoji --no-clean emoji.js",
9
50
  "build:documentation": "node scripts/build-docs.js",
10
51
  "clean": "rm -rf ./dist",
11
52
  "pretest": "npm run clean",
@@ -27,15 +68,19 @@
27
68
  "storybook:a11y-test": "npm run --prefix storybook storybook-a11y-test",
28
69
  "install:all": "npm install && npm install --prefix storybook && npm install --prefix generator-dialtone-vue"
29
70
  },
30
- "files": [
31
- "dist/*.js",
32
- "dist/component-documentation.json"
33
- ],
34
71
  "exports": {
35
72
  ".": "./dist/dialtone-vue.common.js",
36
73
  "./emoji": "./dist/emoji.common.js"
37
74
  },
75
+ "gitHooks": {
76
+ "pre-commit": "lint-staged",
77
+ "commit-msg": "./scripts/commit-msg"
78
+ },
79
+ "volta": {
80
+ "node": "16"
81
+ },
38
82
  "dependencies": {
83
+ "@dialpad/dialtone-icons": "0.0.8-vue3",
39
84
  "emoji-regex": "^10.1.0",
40
85
  "emoji-toolkit": "^6.6.0",
41
86
  "tippy.js": "^6.3.7"
@@ -43,7 +88,7 @@
43
88
  "devDependencies": {
44
89
  "@commitlint/cli": "^17.1.2",
45
90
  "@commitlint/config-conventional": "^17.1.0",
46
- "@dialpad/dialtone": "^7.1.0",
91
+ "@dialpad/dialtone": "^7.4.1",
47
92
  "@percy/cli": "1.10.2",
48
93
  "@percy/storybook": "4.2.1",
49
94
  "@semantic-release/changelog": "^6.0.1",
@@ -83,19 +128,11 @@
83
128
  "yo": "^4.3.0"
84
129
  },
85
130
  "peerDependencies": {
86
- "@dialpad/dialtone": ">=7.1",
131
+ "@dialpad/dialtone": ">=7.4",
87
132
  "vue": ">=3.2"
88
133
  },
89
134
  "engineStrict": true,
90
135
  "engines": {
91
136
  "node": ">= 16"
92
- },
93
- "gitHooks": {
94
- "pre-commit": "lint-staged",
95
- "commit-msg": "./scripts/commit-msg"
96
- },
97
- "repository": "git@github.com:dialpad/dialtone-vue.git",
98
- "volta": {
99
- "node": "16"
100
137
  }
101
138
  }