package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "vscode-uri",
  3. "author": "Microsoft",
  4. "version": "3.0.2",
  5. "description": "The URI implementation that is used by VS Code and its extensions",
  6. "main": "./lib/umd/index.js",
  7. "typings": "./lib/umd/index",
  8. "module": "./lib/esm/index.js",
  9. "sideEffects": false,
  10. "scripts": {
  11. "clean": "rimraf lib",
  12. "pack-production": "webpack --mode=production",
  13. "pack-dev": "webpack",
  14. "prepublish": "npm run test && npm run clean && npm run pack-production",
  15. "test": "tsc -p ./src && npm run pack-dev && mocha"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/microsoft/vscode-uri.git"
  20. },
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/microsoft/vscode-uri/issues"
  24. },
  25. "homepage": "https://github.com/microsoft/vscode-uri#readme",
  26. "devDependencies": {
  27. "@types/mocha": "^8.0.3",
  28. "@types/node": "^10.12.21",
  29. "mocha": "8.1.3",
  30. "path-browserify": "^1.0.1",
  31. "rimraf": "^3.0.2",
  32. "ts-loader": "^8.0.13",
  33. "typescript": "^4.0.3",
  34. "webpack": "^5.11.1",
  35. "webpack-cli": "^4.3.1"
  36. }
  37. }