1{
2  "name": "@expo/package-manager",
3  "version": "1.2.0",
4  "description": "A library for installing and finding packages in a project",
5  "main": "build/index.js",
6  "types": "build/index.d.ts",
7  "scripts": {
8    "watch": "tsc --watch --preserveWatchOutput",
9    "build": "tsc --sourceMap",
10    "prepare": "yarn run clean && yarn build",
11    "clean": "git clean -xdf ./build ./tsconfig.tsbuildinfo",
12    "lint": "eslint .",
13    "test": "jest"
14  },
15  "repository": {
16    "type": "git",
17    "url": "https://github.com/expo/expo.git",
18    "directory": "packages/@expo/package-manager"
19  },
20  "keywords": [
21    "react-native",
22    "package-manager",
23    "package-json",
24    "node",
25    "yarn",
26    "yarnpkg",
27    "pnpm",
28    "bun"
29  ],
30  "license": "MIT",
31  "bugs": {
32    "url": "https://github.com/expo/expo/issues"
33  },
34  "homepage": "https://github.com/expo/expo/tree/main/packages/@expo/package-manager#readme",
35  "files": [
36    "build"
37  ],
38  "dependencies": {
39    "@expo/json-file": "^8.2.37",
40    "@expo/spawn-async": "^1.5.0",
41    "ansi-regex": "^5.0.0",
42    "chalk": "^4.0.0",
43    "find-up": "^5.0.0",
44    "find-yarn-workspace-root": "~2.0.0",
45    "js-yaml": "^3.13.1",
46    "micromatch": "^4.0.2",
47    "npm-package-arg": "^7.0.0",
48    "split": "^1.0.1",
49    "sudo-prompt": "9.1.1"
50  },
51  "devDependencies": {
52    "@types/npm-package-arg": "^6.1.0",
53    "@types/rimraf": "^3.0.0",
54    "@types/split": "^1.0.0",
55    "@types/js-yaml": "^3.12.5",
56    "@types/micromatch": "^4.0.2"
57  },
58  "publishConfig": {
59    "access": "public"
60  }
61}
62