-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "source-map-diff",
"version": "2.0.0",
"description": "Compare source maps to understand why a bundle changed in size.",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"keywords": [
"sourcemap",
"source-map",
"bundle size"
],
"bin": {
"source-map-diff": "lib/cli/index.js"
},
"files": [
"lib"
],
"scripts": {
"start": "jiti ./src/cli/index.ts",
"build": "rm -rf ./lib && tsc -p .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check --fix --unsafe src --files-ignore-unknown=true",
"biome:ci": "biome ci src --files-ignore-unknown=true"
},
"repository": "https://github.com/dylang/source-map-diff",
"author": "Dylan Greene",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"common-path-prefix": "^3.0.0",
"got": "^15.0.1",
"load-json-file": "7.0.1",
"text-treeview": "1.0.2",
"webtreemap": "2.0.1",
"yargs-parser": "22.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/node": "22.19.17",
"@types/yargs-parser": "21.0.3",
"@vitest/coverage-v8": "^4.1.4",
"jiti": "^2.6.1",
"typescript": "6.0.2",
"vitest": "^4.1.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}