summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/tools/docgen/package.json
blob: 82f6d4d6c45b8fd5adad0bf57984f2b8c929c257 (plain)
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
{
  "name": "@puppeteer/docgen",
  "version": "0.1.0",
  "type": "module",
  "private": true,
  "main": "./lib/docgen.js",
  "description": "Documentation generator for Puppeteer",
  "license": "Apache-2.0",
  "scripts": {
    "build": "wireit",
    "clean": "../clean.mjs"
  },
  "wireit": {
    "build": {
      "command": "tsc -b",
      "clean": "if-file-deleted",
      "files": [
        "src/**"
      ],
      "output": [
        "lib/**",
        "tsconfig.tsbuildinfo"
      ]
    }
  },
  "devDependencies": {
    "@microsoft/api-extractor": "7.42.2",
    "@microsoft/api-documenter": "7.23.35",
    "@microsoft/api-extractor-model": "7.28.13",
    "@microsoft/tsdoc": "0.14.2",
    "@rushstack/node-core-library": "4.0.2"
  }
}