v6
 1{
 2  "name": "zx",
 3  "version": "6.2.6",
 4  "description": "A tool for writing better scripts.",
 5  "type": "module",
 6  "main": "./build/index.js",
 7  "types": "./build/index.d.ts",
 8  "exports": {
 9    ".": {
10      "types": "./build/index.d.ts",
11      "import": "./build/index.js"
12    },
13    "./globals": {
14      "types": "./build/globals.d.ts",
15      "import": "./build/globals.js"
16    },
17    "./experimental": {
18      "types": "./build/experimental.d.ts",
19      "import": "./build/experimental.js"
20    },
21    "./cli": {
22      "types": "./build/cli.d.ts",
23      "import": "./build/cli.js"
24    },
25    "./core": {
26      "types": "./build/core.d.ts",
27      "import": "./build/core.js"
28    },
29    "./package.json": "./package.json"
30  },
31  "bin": {
32    "zx": "./build/cli.js"
33  },
34  "engines": {
35    "node": ">= 16.0.0"
36  },
37  "scripts": {
38    "fmt": "prettier --write .",
39    "build": "tsc",
40    "test": "tsc && uvu test -i fixtures",
41    "coverage": "c8 --reporter=html npm test"
42  },
43  "dependencies": {
44    "@types/fs-extra": "^9.0.13",
45    "@types/minimist": "^1.2.5",
46    "@types/node": "^18.19.112",
47    "@types/ps-tree": "^1.1.6",
48    "@types/which": "^2.0.1",
49    "chalk": "^5.4.1",
50    "fs-extra": "^10.1.0",
51    "globby": "^13.1.1",
52    "ignore": "^7.0.5",
53    "minimist": "^1.2.8",
54    "node-fetch": "^3.3.2",
55    "ps-tree": "^1.2.0",
56    "which": "^2.0.2",
57    "yaml": "^2.8.0"
58  },
59  "devDependencies": {
60    "c8": "^7.11.3",
61    "get-port": "^7.1.0",
62    "prettier": "^2.6.2",
63    "typescript": "^5.8.3",
64    "uvu": "^0.5.6"
65  },
66  "publishConfig": {
67    "registry": "https://wombat-dressing-room.appspot.com"
68  },
69  "files": [
70    "build",
71    "zx.js"
72  ],
73  "prettier": {
74    "semi": false,
75    "singleQuote": true
76  },
77  "repository": "google/zx",
78  "author": "Anton Medvedev <anton@medv.io>",
79  "license": "Apache-2.0"
80}