-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 941 Bytes
/
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
{
"name": "@apility/vue-breakpoints-plugin",
"version": "1.0.4",
"description": "A Vue plugin that provides breakpoints definition",
"scripts": {
"build": "tsc && vite build"
},
"files": [
"dist"
],
"main": "./dist/vue-breakpoints-plugin.umd.js",
"module": "./dist/vue-breakpoints-plugin.es.js",
"exports": {
".": {
"import": "./dist/vue-breakpoints-plugin.es.js",
"require": "./dist/vue-breakpoints-plugin.umd.js"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/apility/vue-breakpoints-plugin.git"
},
"author": "Cathrine Vaage",
"homepage": "https://github.com/apility/vue-breakpoints-plugin/tree/main#readme",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@types/node": "^17.0.39",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.2.0",
"vue": "^3.0.0"
}
}