-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@marcoschulte/vue3-progress",
"description": "A fully customizable vue3 plugin to display a progress bar while waiting for something, e.g. http requests",
"version": "0.0.9",
"author": "Marco Schulte",
"license": "ISC",
"repository": "https://github.com/marcoschulte/vue3-progress",
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit",
"postbuild": "cp dist/es/style.css dist/style.css"
},
"type": "module",
"main": "dist/cjs/index.cjs.js",
"module": "dist/es/index.es.js",
"typings": "dist/es/index.d.ts",
"types": "dist/es/index.d.ts",
"exports": {
".": {
"import": "./dist/es/index.es.js",
"require": "./dist/cjs/index.cjs.js",
"types": "./dist/es/index.d.ts"
},
"./style": {
"default": "./dist/es/style.css"
}
},
"keywords": [
"vue",
"vue 3",
"vue3",
"progress",
"bar",
"progress bar",
"loading",
"loading bar",
"loading animation"
],
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"sass": "^1.86.3",
"typescript": "^5.8.3",
"vite": "^5.1.6",
"vite-plugin-dts": "^4.5.3",
"vue": "3.5.13"
}
}