microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ce9c567e5bfb441bb6415699a6b6fa797bc08f2e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/bundle-uploader/package.json

60lines · 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://typespec.io",
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.1",
41 "@azure/storage-blob": "~12.17.0",
42 "@pnpm/find-workspace-packages": "^6.0.9",
43 "@typespec/bundler": "workspace:~",
44 "json5": "^2.2.3",
45 "picocolors": "~1.0.0",
46 "semver": "^7.6.0"
47 },
48 "devDependencies": {
49 "@types/node": "~18.11.19",
50 "@types/semver": "^7.5.8",
51 "@typespec/eslint-config-typespec": "workspace:~",
52 "@vitest/coverage-v8": "^1.4.0",
53 "@vitest/ui": "^1.4.0",
54 "c8": "^9.1.0",
55 "eslint": "^8.57.0",
56 "rimraf": "~5.0.5",
57 "typescript": "~5.4.2",
58 "vitest": "^1.4.0"
59 }
60}