microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/bundle-uploader/package.json
59lines · modecode
| 1 | { |
| 2 | "name": "@typespec/bundle-uploader", |
| 3 | "version": "0.1.0", |
| 4 | "private": true, |
| 5 | "author": "Microsoft Corporation", |
| 6 | "description": "Internal library that manage bundle uploading.", |
| 7 | "homepage": "https://microsoft.github.io/typespec", |
| 8 | "readme": "https://github.com/microsoft/typespec/blob/main/README.md", |
| 9 | "license": "MIT", |
| 10 | "repository": { |
| 11 | "type": "git", |
| 12 | "url": "git+https://github.com/microsoft/typespec.git" |
| 13 | }, |
| 14 | "bugs": { |
| 15 | "url": "https://github.com/microsoft/typespec/issues" |
| 16 | }, |
| 17 | "keywords": [ |
| 18 | "typespec" |
| 19 | ], |
| 20 | "type": "module", |
| 21 | "main": "dist/src/index.js", |
| 22 | "engines": { |
| 23 | "node": ">=16.0.0" |
| 24 | }, |
| 25 | "scripts": { |
| 26 | "clean": "rimraf ./dist ./temp", |
| 27 | "build": "tsc -p .", |
| 28 | "watch": "tsc -p . --watch", |
| 29 | "test": "echo 'no test'", |
| 30 | "test-official": "echo 'no test'", |
| 31 | "lint": "eslint . --ext .ts --max-warnings=0", |
| 32 | "lint:fix": "eslint . --fix --ext .ts" |
| 33 | }, |
| 34 | "files": [ |
| 35 | "lib/*.tsp", |
| 36 | "dist/**", |
| 37 | "!dist/test/**" |
| 38 | ], |
| 39 | "dependencies": { |
| 40 | "@azure/identity": "~4.0.0", |
| 41 | "@azure/storage-blob": "~12.17.0", |
| 42 | "@typespec/bundler": "workspace:~0.1.0-alpha.5", |
| 43 | "picocolors": "~1.0.0", |
| 44 | "semver": "^7.5.4", |
| 45 | "json5": "^2.2.3" |
| 46 | }, |
| 47 | "devDependencies": { |
| 48 | "@types/node": "~18.11.9", |
| 49 | "@typespec/eslint-config-typespec": "workspace:~0.52.0", |
| 50 | "@types/semver": "^7.5.6", |
| 51 | "eslint": "^8.55.0", |
| 52 | "vitest": "^1.2.0", |
| 53 | "@vitest/coverage-v8": "^1.1.0", |
| 54 | "@vitest/ui": "~1.1.3", |
| 55 | "c8": "~8.0.1", |
| 56 | "rimraf": "~5.0.1", |
| 57 | "typescript": "~5.3.3" |
| 58 | } |
| 59 | } |
| 60 | |