-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
48
49
{
"name": "vite-perf",
"version": "0.1.0",
"description": "A cli tool to collect vite performance metrics",
"main": "./dist/cli.js",
"scripts": {
"dev": "tsup cli.ts --watch",
"build": "tsup cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "pnpm build"
},
"exports": {
".": {
"require": "./dist/cli.js"
}
},
"bin": {
"vperf": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sun0day/vite-perf.git"
},
"keywords": [
"vite",
"cli",
"performance"
],
"author": "sun0day",
"license": "MIT",
"bugs": {
"url": "https://github.com/sun0day/vite-perf/issues"
},
"homepage": "https://github.com/sun0day/vite-perf#readme",
"engines": {
"node": ">=14"
},
"peerDependencies": {
"vite": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"cac": "^6.7.14",
"ora": "^6.3.0",
"playwright": "^1.32.3",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}