| 12345678910111213141516171819202122232425262728293031323334353637 | {  "name": "vscode-uri",  "author": "Microsoft",  "version": "3.0.2",  "description": "The URI implementation that is used by VS Code and its extensions",  "main": "./lib/umd/index.js",  "typings": "./lib/umd/index",  "module": "./lib/esm/index.js",  "sideEffects": false,  "scripts": {    "clean": "rimraf lib",    "pack-production": "webpack --mode=production",    "pack-dev": "webpack",    "prepublish": "npm run test && npm run clean && npm run pack-production",    "test": "tsc -p ./src && npm run pack-dev && mocha"  },  "repository": {    "type": "git",    "url": "git+https://github.com/microsoft/vscode-uri.git"  },  "license": "MIT",  "bugs": {    "url": "https://github.com/microsoft/vscode-uri/issues"  },  "homepage": "https://github.com/microsoft/vscode-uri#readme",  "devDependencies": {    "@types/mocha": "^8.0.3",    "@types/node": "^10.12.21",    "mocha": "8.1.3",    "path-browserify": "^1.0.1",    "rimraf": "^3.0.2",    "ts-loader": "^8.0.13",    "typescript": "^4.0.3",    "webpack": "^5.11.1",    "webpack-cli": "^4.3.1"  }}
 |