-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@moumensoliman/crust",
"version": "0.2.4",
"description": "Production-build regression analysis for Next.js App Router: cause chains, shared blast radius, bundle attribution, static-shell composition, and source blame.",
"license": "MIT",
"author": "Moumen Soliman",
"homepage": "https://crust.moumen.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/moumen-soliman/crust.git"
},
"bugs": {
"url": "https://github.com/moumen-soliman/crust/issues"
},
"keywords": [
"nextjs",
"app-router",
"performance",
"build-analysis",
"regression-detection",
"bundle-attribution",
"partial-prerendering",
"cache-components",
"ci"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"engines": {
"node": ">=20"
},
"bin": {
"crust": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./widget": {
"types": "./dist/widget.d.ts",
"import": "./dist/widget.js",
"require": "./dist/widget.cjs"
},
"./collector": {
"types": "./dist/collector.d.ts",
"import": "./dist/collector.js",
"require": "./dist/collector.cjs"
},
"./ingest": {
"types": "./dist/ingest.d.ts",
"import": "./dist/ingest.js",
"require": "./dist/ingest.cjs"
},
"./otel": {
"types": "./dist/otel.d.ts",
"import": "./dist/otel.js",
"require": "./dist/otel.cjs"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"COMPATIBILITY.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepack": "pnpm build",
"prepublishOnly": "pnpm typecheck && pnpm test",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"spike": "node spike/phase0.ts"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.31",
"@modelcontextprotocol/sdk": "^1.30.0",
"cac": "^6.7.14",
"es-module-lexer": "^1.7.0",
"get-tsconfig": "^4.14.0",
"ink": "^6.8.0",
"oxc-parser": "^0.142.0",
"oxc-resolver": "^11.24.2",
"picocolors": "^1.1.1",
"react": "^19.2.8",
"ulid": "^3.0.2"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/react": "^19.2.18",
"playwright": "^1.62.1",
"tsup": "^8.4.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"playwright": ">=1.40"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"directories": {
"doc": "docs",
"test": "test"
}
}