forked from xh4528/vite-plugin-loading-indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "vite-plugin-loading-indicator",
"version": "1.0.0",
"description": "Loading indicator plugin for Vite",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"vite",
"plugin",
"loading",
"indicator"
],
"files": [
"dist"
],
"author": "xh4528 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xh4528/vite-plugin-loading-indicator"
},
"homepage": "https://github.com/xh4528/vite-plugin-loading-indicator",
"bugs": "https://github.com/xh4528/vite-plugin-loading-indicator/issues",
"scripts": {
"dev": "yarn generate -- --watch --ignore-watch examples",
"build": "yarn clear && yarn generate && yarn copy",
"generate": "tsup src/index.ts --dts --format cjs,esm --no-splitting",
"copy": "cp -rf ./src/loading ./dist/loading",
"clear": "rm -rf ./dist"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.10",
"chalk": "^4.1.2",
"tsup": "^4.14.0",
"typescript": "^4.4.2",
"fs-extra": "^10.0.0"
}
}