-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 918 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
37
38
39
40
41
42
{
"name": "speed-measure-vite-plugin",
"version": "1.1.0",
"description": "Measures your vite plugin transform speed",
"exports": {
".": {
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
},
"require": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
}
},
"type": "commonjs",
"main": "dist/main.js",
"keywords": [
"vite speed",
"uniapp"
],
"scripts": {
"build": "vite build",
"lint": "npx rome check ./src",
"format": "npx rome format ./src --write"
},
"license": "UNLICENSE (HTTP://UNLICENSE.ORG/)",
"repository": {
"type": "git",
"url": "git+https://github.com/lbb00/speed-measure-vite-plugin.git"
},
"files": [
"dist"
],
"author": "lbb00",
"devDependencies": {
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vite-plugin-dts": "^4.2.1"
}
}