-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
{
"name": "@rnx-kit/align-deps",
"version": "3.4.0",
"description": "Manage dependencies within a repository and across many repositories",
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/align-deps#readme",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"files": [
"lib/**/*.d.ts",
"lib/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"rnx-align-deps": "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/align-deps"
},
"scripts": {
"build": "rnx-kit-scripts build",
"bundle": "rnx-kit-scripts bundle",
"format": "rnx-kit-scripts format",
"lint": "rnx-kit-scripts lint",
"test": "rnx-kit-scripts test",
"update-preset": "node --no-warnings --conditions=typescript scripts/update-preset.ts",
"update-profile": "node --no-warnings --conditions=typescript scripts/update-profile.ts",
"update-readme": "node --no-warnings --conditions=typescript scripts/update-readme.ts"
},
"dependencies": {
"@rnx-kit/config-types": "^1.0.0",
"@rnx-kit/node-types": "^1.0.0"
},
"devDependencies": {
"@octokit/core": "^7.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@react-native-community/cli-types": "^20.0.0",
"@rnx-kit/config": "*",
"@rnx-kit/console": "*",
"@rnx-kit/eslint-config": "*",
"@rnx-kit/scripts": "*",
"@rnx-kit/tools-language": "*",
"@rnx-kit/tools-node": "*",
"@rnx-kit/tools-shell": "*",
"@rnx-kit/tools-workspaces": "*",
"@rnx-kit/tsconfig": "*",
"@types/js-yaml": "^4.0.5",
"@types/prompts": "^2.0.0",
"@types/semver": "^7.0.0",
"@types/yargs": "^16.0.0",
"detect-indent": "^6.0.0",
"js-yaml": "^4.1.1",
"markdown-table": "^3.0.0",
"package-json": "^10.0.0",
"prompts": "^2.4.0",
"recast": "^0.23.0",
"semver": "^7.0.0",
"yargs": "^16.0.0"
},
"engines": {
"node": ">=16.17"
}
}