-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "@rnx-kit/metro-plugin-duplicates-checker",
"version": "3.0.2",
"description": "Duplicate packages checker",
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/metro-plugin-duplicates-checker#readme",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"check-duplicates": "lib/index.js"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"typescript": "./src/index.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit",
"directory": "packages/metro-plugin-duplicates-checker"
},
"scripts": {
"build": "rnx-kit-scripts build",
"format": "rnx-kit-scripts format",
"lint": "rnx-kit-scripts lint",
"test": "rnx-kit-scripts test"
},
"dependencies": {
"@rnx-kit/console": "^2.0.0",
"@rnx-kit/tools-node": "^3.0.0"
},
"devDependencies": {
"@rnx-kit/eslint-config": "*",
"@rnx-kit/metro-serializer": "*",
"@rnx-kit/scripts": "*",
"@rnx-kit/tsconfig": "*",
"@types/node": "^24.0.0",
"memfs": "^4.0.0",
"metro": "^0.83.1",
"metro-source-map": "^0.83.1"
},
"engines": {
"node": ">=16.17"
}
}