-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 KB
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
{
"name": "vite-plugin-preload-progress",
"version": "0.0.0",
"description": "Vite plugin that preloads all initial chunks with a real progress bar, then executes your app.",
"keywords": [
"loading",
"preload",
"progress",
"vite",
"vite-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/simochee/vite-plugin-preload-progress.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsdown",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"fmt": "oxfmt --check .",
"fmt:fix": "oxfmt --write .",
"prepublishOnly": "bun run build",
"prepare": "lefthook install"
},
"devDependencies": {
"bun-types": "^1.3.10",
"lefthook": "^2.1.4",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.17.0",
"rollup": "^4.0.0",
"tsdown": "^0.21.3",
"typescript": "^5.0.0",
"vite": "^6.0.0"
},
"peerDependencies": {
"vite": ">=4.0.0"
}
}