1 | {
|
2 | "name": "vscode-uri",
|
3 | "author": "Microsoft",
|
4 | "version": "3.0.8",
|
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 | "exports": {
|
9 | "import": "./lib/esm/index.mjs",
|
10 | "require": "./lib/umd/index.js",
|
11 | "types": "./lib/umd/index.d.ts",
|
12 | "browser": "./lib/esm/index.mjs"
|
13 | },
|
14 | "sideEffects": false,
|
15 | "scripts": {
|
16 | "clean": "rimraf lib",
|
17 | "pack-production": "webpack --mode=production",
|
18 | "pack-dev": "webpack",
|
19 | "compile": "tsc -p ./src",
|
20 | "prepublish": "npm run pack-production",
|
21 | "test": "tsc -p ./src && npm run pack-dev && mocha"
|
22 | },
|
23 | "repository": {
|
24 | "type": "git",
|
25 | "url": "git+https://github.com/microsoft/vscode-uri.git"
|
26 | },
|
27 | "license": "MIT",
|
28 | "bugs": {
|
29 | "url": "https://github.com/microsoft/vscode-uri/issues"
|
30 | },
|
31 | "homepage": "https://github.com/microsoft/vscode-uri#readme",
|
32 | "devDependencies": {
|
33 | "@types/mocha": "^10.0.2",
|
34 | "@types/node": "16.x",
|
35 | "mocha": "^10.2.0",
|
36 | "path-browserify": "^1.0.1",
|
37 | "rimraf": "^5.0.5",
|
38 | "ts-loader": "^9.4.4",
|
39 | "typescript": "^5.2.2",
|
40 | "webpack": "^5.88.2",
|
41 | "webpack-cli": "^5.1.4"
|
42 | }
|
43 | }
|