-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nuxt-bundle-analysis",
"version": "3.0.1",
"type": "module",
"description": "Analyzes each PR's impact on your nuxt.js app's bundle size and displays it using a comment.",
"bin": {
"generate": "dist/generate.mjs",
"report": "dist/report.mjs",
"compare": "dist/compare.mjs"
},
"files": [
"dist",
"actions-template"
],
"scripts": {
"test": "pnpm build && pnpm build:playground && pnpm dev:prepare && pnpm report && pnpm compare && vitest run",
"test:update": "pnpm build && pnpm build:playground && pnpm dev:prepare && pnpm report && pnpm compare && vitest -u",
"test:vite": "NUXT_BUNDLE_ANALYSIS_BUILDER=\"vite\" pnpm run test",
"minor": "npm version minor",
"build": "unbuild",
"build:playground": "pnpm --filter playground build",
"dev:prepare": "node scripts/test-prepare.mjs",
"report": "pnpm --filter playground report",
"compare": "pnpm --filter playground compare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wattanx/nuxt-bundle-analysis.git"
},
"author": "wattanx",
"license": "MIT",
"bugs": {
"url": "https://github.com/wattanx/nuxt-bundle-analysis/issues"
},
"homepage": "https://github.com/wattanx/nuxt-bundle-analysis#readme",
"keywords": [
"nuxt",
"nuxtjs",
"bundle",
"analysis",
"github",
"action"
],
"dependencies": {
"@discoveryjs/json-ext": "^0.6.1",
"defu": "^6.1.4",
"destr": "^2.0.3",
"filesize": "^8.0.7",
"globby": "^14.0.2",
"inquirer": "^8.2.4",
"mkdirp": "^1.0.4",
"pathe": "^1.1.2",
"pkg-types": "^1.1.3"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "18",
"typescript": "5.5.4",
"unbuild": "^2.0.0",
"vite": "5.4.0",
"vitest": "2.0.5"
},
"packageManager": "[email protected]"
}