tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

package.json (698B)


      1 {
      2  "name": "@puppeteer/docgen",
      3  "version": "0.1.0",
      4  "type": "module",
      5  "private": true,
      6  "main": "./lib/docgen.js",
      7  "description": "Documentation generator for Puppeteer",
      8  "license": "Apache-2.0",
      9  "scripts": {
     10    "build": "wireit",
     11    "clean": "../clean.mjs"
     12  },
     13  "wireit": {
     14    "build": {
     15      "command": "tsc -b",
     16      "clean": "if-file-deleted",
     17      "files": [
     18        "src/**"
     19      ],
     20      "output": [
     21        "lib/**",
     22        "tsconfig.tsbuildinfo"
     23      ]
     24    }
     25  },
     26  "devDependencies": {
     27    "@microsoft/api-documenter": "7.26.27",
     28    "@microsoft/api-extractor-model": "7.30.6",
     29    "@microsoft/tsdoc": "0.15.1",
     30    "@rushstack/node-core-library": "5.13.1"
     31  }
     32 }