forked from jdinartejesus/vue-progress-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "@onekiloparsec/vue-progressbar",
"version": "1.0.1",
"description": "A lightweight progress bar for Vuejs 3",
"files": [
"dist"
],
"type": "module",
"main": "./dist/vue-progressbar.umd.cjs",
"module": "./dist/vue-progressbar.js",
"exports": {
".": {
"import": "./dist/vue-progressbar.js",
"require": "./dist/vue-progressbar.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "rimraf dist && rimraf types && vite build",
"preview": "vite preview",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/onekiloparsec/vue-progressbar.git"
},
"keywords": [
"vue",
"vue-progressbar",
"vue loading progress",
"vue progressbar",
"vue3",
"vue3-progressbar",
"vue3 loading progress",
"vue3 progressbar",
"progressbar"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"vite": "^4.5.0",
"vue": "^3.0.4"
}
}