kjelsrud.dev/node_modules/@vscode/l10n/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2023-07-19 21:31:30 +02:00
{
"name": "@vscode/l10n",
"version": "0.0.14",
"description": "A helper library to assist in localizing subprocesses spun up by VS Code extensions",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-l10n.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-l10n/issues"
},
"main": "./dist/main.js",
"sideEffects": false,
"browser": {
"./dist/main.js": "./dist/browser.js",
"./src/node/reader": "./src/browser/reader"
},
"types": "dist/main.d.ts",
"files": [
"dist/*"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.32.1",
"@types/mocha": "^9.1.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"esbuild": "^0.15.5",
"eslint": "^7.29.0",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"import-fresh": "^3.3.0",
"mocha": "^10.0.0",
"mock-fs": "^5.1.4",
"request-light": "^0.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"clean": "rimraf dist && rimraf lib",
"compile": "npm run clean && tsc --emitDeclarationOnly --outDir lib && node .esbuild.config.js",
"lint": "eslint src --ext ts",
"watch": "node .esbuild.config.js --watch",
"test": "mocha",
"prepublishOnly": "npm run lint && npm run compile && npm run test"
}
}