-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vue-ellipsis-component",
"author": {
"email": "[email protected]",
"name": "ruofee",
"url": "http://ruofee.cn"
},
"version": "1.1.3",
"license": "MIT",
"keywords": [
"vue",
"ellipsis",
"clamp",
"component"
],
"repository": {
"type": "github",
"url": "https://github.com/ruofee/vue-ellipsis-component"
},
"main": "./lib/vue-ellipsis-component.js",
"module": "./lib/vue-ellipsis-component.es.js",
"exports": {
".": {
"import": "./lib/vue-ellipsis-component.es.js",
"require": "./lib/vue-ellipsis-component.js"
}
},
"typings": "types/index.d.ts",
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"files": [
"lib",
"vetur",
"types",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest --coverage",
"lint": "eslint ./packages --ext .vue,.js,.ts,.jsx,.tsx --fix",
"docs:dev": "yarn build && vuepress dev docs",
"docs:build": "yarn build && vuepress build docs"
},
"devDependencies": {
"@sentry/vue": "^7.107.0",
"@types/jest": "^24.0.19",
"@types/resize-observer-browser": "^0.1.6",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "1.3.0",
"c8": "^7.11.0",
"eslint": "^8.11.0",
"eslint-plugin-vue": "^8.5.0",
"jsdom": "^19.0.0",
"typescript": "~4.1.5",
"vite": "^2.8.6",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-vue2": "^2.0.3",
"vitest": "^0.7.4",
"vue": "2.7.16",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vuepress": "^1.9.10"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"dependencies": {}
}